Testing and QA

Understanding INSERT IGNORE in MySQL

Usually, if there is an error during the INSERT command execution, the error is thrown and the execution stopped. MySQL supports something named IGNORE along with INSERT, which captures the error as a WARNING. Consider the following CREATE TABLE ‘EmployeeDetails’ ( ‘Id’ INT(5) NOT NULL PRIMARY KEY, ‘Name’ VARCHAR(50) NOT

Quickly View All TODOs in Visual Studio

TODOs are a quick way to jot down action items while coding. It can also sometimes become cumbersome to locate all TODOs for further action. Visual Studio provides a way to get them. Select View – Show Tasks option. This lists all TODOs in the code.