tldr it queries against sqlite_master ```sql SELECT name FROM sqlite_master WHERE type='table' AND n

tldr it queries against sqlite_master
SELECT name FROM sqlite_master WHERE type='table' AND name=?;

to get every table
Was this page helpful?