Take a more generic approach at counting all the tables in the database file

This commit is contained in:
Gregoo
2025-01-24 10:03:53 +01:00
parent 5ea9240f34
commit e2bcd61ace
4 changed files with 53 additions and 18 deletions

View File

@@ -0,0 +1 @@
SELECT "name" FROM "sqlite_master" WHERE type='table' ORDER BY "name" ASC