getCreateTableString method

String getCreateTableString(
  1. String tableName, [
  2. bool fts = false
])

Implementation

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