Exemple #1
0
 /// <summary>
 /// Creates the column with the specified name and data type (e.g. id, INT)
 /// and options (e.g. NOT NULL).
 /// </summary>
 public Column(string name, SQLiteDataType dataType, string options)
     : this(name, dataType.ToString(), options)
 {
 }
Exemple #2
0
 /// <summary>
 /// Creates the column with the specified name and data type (e.g. id, INT).
 /// Options default to NOT NULL.
 /// </summary>
 public Column(string name, SQLiteDataType dataType)
     : this(name, dataType.ToString(), "NOT NULL")
 {
 }