getCreateTableString method
Implementation
@override
String getCreateTableString(String tableName, [bool fts=false]) {
if(fts) {
return "CREATE VIRTUAL TABLE "+tableName+" USING fts4 ";
}
return "CREATE TABLE "+tableName+" ";
}
@override
String getCreateTableString(String tableName, [bool fts=false]) {
if(fts) {
return "CREATE VIRTUAL TABLE "+tableName+" USING fts4 ";
}
return "CREATE TABLE "+tableName+" ";
}