Usage of static constant for SQL Statements
Embedding SQL statement is sometimes useful. A good practice is to centralize them in a class, using public constants...
public const string SQL_MYTABLE_INSERT = "INSERT MYTABLE (FIELD) VALUES (@FIELDVALUE)";
-f.