up vote 8 down vote favorite
2
share [g+] share [fb]

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?

link|improve this question

52% accept rate
I suggest renaming the question to something non python specific since the answer is actually universal to interfaces that use SQL. – Unode Nov 11 '10 at 16:34
True, although I was expecting a python API when asking it. I'll try to find the right name. – noamtm Nov 15 '10 at 8:54
feedback

4 Answers

up vote 19 down vote accepted

You can fetch the list of tables and schemata by querying the SQLITE_MASTER table:

sqlite> .tab
job         snmptarget  t1          t2          t3        
sqlite> select name from sqlite_master where type = 'table';
job
t1
t2
snmptarget
t3

sqlite> .schema job
CREATE TABLE job (
    id INTEGER PRIMARY KEY,
    data VARCHAR
);
sqlite> select sql from sqlite_master where type = 'table' and name = 'job';
CREATE TABLE job (
    id INTEGER PRIMARY KEY,
    data VARCHAR
)
link|improve this answer
feedback

I'm not familiar with the Python API but you can always use

SELECT * FROM sqlite_master;
link|improve this answer
feedback

Check out here for dump. It seems there is a dump function in the library sqlite3.

link|improve this answer
I'm trying: import sqlite3 con = sqlite3.connect("test.db") con.dump() It fails... I keep checking – Angel Nov 20 '08 at 20:47
feedback

Apparently the version of sqlite3 included in Python 2.6 has this ability: http://docs.python.org/dev/library/sqlite3.html

# Convert file existing_db.db to SQL dump file dump.sql
import sqlite3, os

con = sqlite3.connect('existing_db.db')
with open('dump.sql', 'w') as f:
    for line in con.iterdump():
        f.write('%s\n' % line)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.