tableExists method
Checks if the given table exists.
Implementation
@override
Statement tableExists(QualifiedTablename table) {
return Statement(
"SELECT 1 FROM sqlite_master WHERE type = 'table' AND name = ?",
[table.tablename],
);
}
Checks if the given table exists.
@override
Statement tableExists(QualifiedTablename table) {
return Statement(
"SELECT 1 FROM sqlite_master WHERE type = 'table' AND name = ?",
[table.tablename],
);
}