/// <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) { }
/// <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") { }