getCreateTableString method
Implementation
String getCreateTableString(String tableName, [bool fts=false]) {
if(fts) throw ArgumentError("Full table search not implemented for "+dbType.toString());
return "CREATE TABLE "+tableName+" ";
}
String getCreateTableString(String tableName, [bool fts=false]) {
if(fts) throw ArgumentError("Full table search not implemented for "+dbType.toString());
return "CREATE TABLE "+tableName+" ";
}