AbstractSqlStrings constructor
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);
}
}