We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This comes up empty:
sqlite> select * FROM sqlite_master WHERE type='table';
Is there another way to list out the vtables we provide?
Of course there's always the hub. And if I know I have e.g. github_issue I can do this:
sqlite> pragma table_info('github_issue'); 0|repository_full_name|TEXT|0||0 1|number|INT|0||0 2|id|INT|0||0 3|node_id|TEXT|0||0 4|active_lock_reason|TEXT|0||0 5|author|TEXT|0||0
Still it would be nice if we populated sqlite_master.
sqlite> pragma table_info('sqlite_master'); 0|type|TEXT|0||0 1|name|TEXT|0||0 2|tbl_name|TEXT|0||0 3|rootpage|INT|0||0 4|sql|TEXT|0||0
The text was updated successfully, but these errors were encountered:
SQLite recommends that we don't modify the sqlite_master table.
sqlite_master
Reference: Creation and Modification Of The Schema Table section of the SQLite documentation on sqlite_master. (https://www.sqlite.org/schematab.html)
Sorry, something went wrong.
Fair enough. I retitled this 'enable querying for vtables'
@judell we feel that having a parallel to .inspect should resolve this. (#11)
.inspect
No branches or pull requests
This comes up empty:
sqlite> select * FROM sqlite_master WHERE type='table';
Is there another way to list out the vtables we provide?
Of course there's always the hub. And if I know I have e.g. github_issue I can do this:
Still it would be nice if we populated sqlite_master.
The text was updated successfully, but these errors were encountered: