AbstractSqlStrings constructor

AbstractSqlStrings(
  1. String tableName,
  2. DBType dbType
)

Implementation

factory AbstractSqlStrings(String tableName, DBType dbType) {
  switch(dbType) {
    case DBType.Hsql: throw Exception("Not implemented yet");
    case DBType.Sqflite: return SqfliteStrings(dbType);
    case DBType.Sqlite: throw Exception("Not implemented yet");
    case DBType.Mysql: return MysqlStrings(dbType);
  }
}