For some reason I can't find online or in the docs the way to get the equivalents of sqlite's interactive shell commands:
.tables
.dump
in sqlite's APIs.
Is there anything like that? Am I missing something?
feedback
|
|
You can fetch the list of tables and schemata by querying the SQLITE_MASTER table:
| |||
|
feedback
|
|
I'm not familiar with the Python API but you can always use
| |||
|
feedback
|
|
Check out here for dump. It seems there is a dump function in the library sqlite3. | |||
feedback
|
|
Apparently the version of sqlite3 included in Python 2.6 has this ability: http://docs.python.org/dev/library/sqlite3.html
| |||
|
feedback
|