You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I find myself wanting to quickly figure out all of the BLOB columns in a database.
A /-/schema page showing the full schema (actually since it's per-database probably /dbname/-/schema or /-/schema/dbname) would be really handy.
It would need to be carefully constructed from various queries against sqlite_master - just doing select * from sqlite_master where type='table' isn't quite enough because I also want to show indexes, triggers etc.
The text was updated successfully, but these errors were encountered:
I find myself wanting to quickly figure out all of the BLOB columns in a database.
A
/-/schema
page showing the full schema (actually since it's per-database probably/dbname/-/schema
or/-/schema/dbname
) would be really handy.It would need to be carefully constructed from various queries against
sqlite_master
- just doingselect * from sqlite_master where type='table'
isn't quite enough because I also want to show indexes, triggers etc.The text was updated successfully, but these errors were encountered: