Find table names and column names for a table in SQLite

columnNames proc

Searching for the SQL to retrieve table names for a SQLite database finds this SQL:

SELECT name FROM sqlite_master WHERE type="table"

The column names for MyTable can be found like this:

SELECT * FROM MyTable LIMIT 0

Provided that Ignore Header is false.

Geef een reactie

Het e-mailadres wordt niet gepubliceerd. Vereiste velden zijn gemarkeerd met *

Deze website gebruikt Akismet om spam te verminderen. Bekijk hoe je reactie-gegevens worden verwerkt.