SqlCommands constructor
SqlCommands(
- String tableName,
- SchemaMetaData smd,
- DBType dbType
Implementation
SqlCommands(this.tableName, this.smd, this.dbType) {
if(smd==null) throw ArgumentError("SchemaMetaData must not be null");
sqlStrings = AbstractSqlStrings(this.tableName, this.dbType);
}