Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hello. I know how to get table names from SQLite database: @QSqlQuery query("SELECT name FROM sqlite_master WHERE type = 'table'");@
Can you tell me, how to make a query for: column_name, data_type, is_nullable, ... ?
@ QSqlQuery query("PRAGMA table_info(" + tableName +")"); @