Thread SQLite show tables (2 answers)
Opened by rosti at 2019-07-26 17:25

haj
 2019-07-26 17:34
#190286 #190286
User since
2015-01-07
527 Artikel
BenutzerIn

user image
Das ist vermutlich eine Vorschrift für eine andere Datenbank-Engine. Für solche Abfragen hat jede Engine ihre eigenen Metadaten. In SQLite3 geht das per SQL so:

Code: (dl )
SELECT name FROM sqlite_master WHERE type='table';

View full thread SQLite show tables