Random thoughts and bits of Software Dev Knowledge
Collection of unedited thoughts and bits of knowledge I can't seem to remember
Tuesday, August 25, 2015
Useful sqlite system queries
List tables and indexes in SQlite database:
SELECT * FROM sqlite_master
List columns for a table:
pragma table_info(
)
‹
›
Home
View web version