I would like to make the following query:
SELECT table_name, column_name, data_type, is_nullable, ... FROM information_schema.columns
in sqlite database.
I checked
PRAGMA table_info(table_name);
but doesnโt meet my needs, just check the fields for one table.
I checked
select * from sqlite_master where type = 'table';
But it just gets the table names and the create request.
Is there a way to โattachโ them to methods? or any other suggestions or ideas? TX
database sqlite schema
Jhonny D. Cano -Leftware-
source share