listTablesNames method

List<String> listTablesNames()

The names of the tables in this database (excluding SQLite's internal sqlite_* tables).

Implementation

List<String> listTablesNames() => executeRawSQL(
  "SELECT name FROM sqlite_master "
  "WHERE type = 'table' AND name NOT LIKE 'sqlite_%'",
).map((r) => r['name'].toString()).toList();