SqlCommands constructor

SqlCommands(
  1. String tableName,
  2. SchemaMetaData smd,
  3. 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);
}