Gregory P. Smith | a98be45 | 2008-03-28 20:11:49 +0000 | [diff] [blame] | 1 | # Mimic the sqlite3 console shell's .dump command |
| 2 | # Author: Paul Kippes <kippesp@gmail.com> |
| 3 | |
Petri Lehtinen | 587209f | 2012-02-12 21:03:02 +0200 | [diff] [blame] | 4 | # Every identifier in sql is quoted based on a comment in sqlite |
| 5 | # documentation "SQLite adds new keywords from time to time when it |
| 6 | # takes on new features. So to prevent your code from being broken by |
| 7 | # future enhancements, you should normally quote any identifier that |
| 8 | # is an English language word, even if you do not have to." |
| 9 | |
Gregory P. Smith | a98be45 | 2008-03-28 20:11:49 +0000 | [diff] [blame] | 10 | def _iterdump(connection): |
| 11 | """ |
| 12 | Returns an iterator to the dump of the database in an SQL text format. |
| 13 | |
| 14 | Used to produce an SQL dump of the database. Useful to save an in-memory |
| 15 | database for later restoration. This function should not be called |
| 16 | directly but instead called from the Connection method, iterdump(). |
| 17 | """ |
| 18 | |
| 19 | cu = connection.cursor() |
| 20 | yield('BEGIN TRANSACTION;') |
| 21 | |
| 22 | # sqlite_master table contains the SQL CREATE statements for the database. |
| 23 | q = """ |
Petri Lehtinen | 587209f | 2012-02-12 21:03:02 +0200 | [diff] [blame] | 24 | SELECT "name", "type", "sql" |
| 25 | FROM "sqlite_master" |
| 26 | WHERE "sql" NOT NULL AND |
| 27 | "type" == 'table' |
R David Murray | d618684 | 2013-01-10 11:30:51 -0500 | [diff] [blame] | 28 | ORDER BY "name" |
Gregory P. Smith | a98be45 | 2008-03-28 20:11:49 +0000 | [diff] [blame] | 29 | """ |
| 30 | schema_res = cu.execute(q) |
R David Murray | d618684 | 2013-01-10 11:30:51 -0500 | [diff] [blame] | 31 | for table_name, type, sql in schema_res.fetchall(): |
Gregory P. Smith | a98be45 | 2008-03-28 20:11:49 +0000 | [diff] [blame] | 32 | if table_name == 'sqlite_sequence': |
Petri Lehtinen | 587209f | 2012-02-12 21:03:02 +0200 | [diff] [blame] | 33 | yield('DELETE FROM "sqlite_sequence";') |
Gregory P. Smith | a98be45 | 2008-03-28 20:11:49 +0000 | [diff] [blame] | 34 | elif table_name == 'sqlite_stat1': |
Petri Lehtinen | 587209f | 2012-02-12 21:03:02 +0200 | [diff] [blame] | 35 | yield('ANALYZE "sqlite_master";') |
Gregory P. Smith | a98be45 | 2008-03-28 20:11:49 +0000 | [diff] [blame] | 36 | elif table_name.startswith('sqlite_'): |
| 37 | continue |
| 38 | # NOTE: Virtual table support not implemented |
| 39 | #elif sql.startswith('CREATE VIRTUAL TABLE'): |
| 40 | # qtable = table_name.replace("'", "''") |
| 41 | # yield("INSERT INTO sqlite_master(type,name,tbl_name,rootpage,sql)"\ |
Petri Lehtinen | 587209f | 2012-02-12 21:03:02 +0200 | [diff] [blame] | 42 | # "VALUES('table','{0}','{0}',0,'{1}');".format( |
Gregory P. Smith | a98be45 | 2008-03-28 20:11:49 +0000 | [diff] [blame] | 43 | # qtable, |
Petri Lehtinen | 587209f | 2012-02-12 21:03:02 +0200 | [diff] [blame] | 44 | # sql.replace("''"))) |
Gregory P. Smith | a98be45 | 2008-03-28 20:11:49 +0000 | [diff] [blame] | 45 | else: |
R David Murray | 32851d6 | 2013-01-10 21:10:40 -0500 | [diff] [blame] | 46 | yield('%s;' % sql) |
Gregory P. Smith | a98be45 | 2008-03-28 20:11:49 +0000 | [diff] [blame] | 47 | |
| 48 | # Build the insert statement for each row of the current table |
Petri Lehtinen | 587209f | 2012-02-12 21:03:02 +0200 | [diff] [blame] | 49 | table_name_ident = table_name.replace('"', '""') |
| 50 | res = cu.execute('PRAGMA table_info("{0}")'.format(table_name_ident)) |
Gregory P. Smith | a98be45 | 2008-03-28 20:11:49 +0000 | [diff] [blame] | 51 | column_names = [str(table_info[1]) for table_info in res.fetchall()] |
Petri Lehtinen | 587209f | 2012-02-12 21:03:02 +0200 | [diff] [blame] | 52 | q = """SELECT 'INSERT INTO "{0}" VALUES({1})' FROM "{0}";""".format( |
| 53 | table_name_ident, |
| 54 | ",".join("""'||quote("{0}")||'""".format(col.replace('"', '""')) for col in column_names)) |
| 55 | query_res = cu.execute(q) |
Gregory P. Smith | a98be45 | 2008-03-28 20:11:49 +0000 | [diff] [blame] | 56 | for row in query_res: |
R David Murray | 32851d6 | 2013-01-10 21:10:40 -0500 | [diff] [blame] | 57 | yield("%s;" % row[0]) |
Gregory P. Smith | a98be45 | 2008-03-28 20:11:49 +0000 | [diff] [blame] | 58 | |
| 59 | # Now when the type is 'index', 'trigger', or 'view' |
| 60 | q = """ |
Petri Lehtinen | 587209f | 2012-02-12 21:03:02 +0200 | [diff] [blame] | 61 | SELECT "name", "type", "sql" |
| 62 | FROM "sqlite_master" |
| 63 | WHERE "sql" NOT NULL AND |
| 64 | "type" IN ('index', 'trigger', 'view') |
Gregory P. Smith | a98be45 | 2008-03-28 20:11:49 +0000 | [diff] [blame] | 65 | """ |
| 66 | schema_res = cu.execute(q) |
| 67 | for name, type, sql in schema_res.fetchall(): |
R David Murray | 32851d6 | 2013-01-10 21:10:40 -0500 | [diff] [blame] | 68 | yield('%s;' % sql) |
Gregory P. Smith | a98be45 | 2008-03-28 20:11:49 +0000 | [diff] [blame] | 69 | |
| 70 | yield('COMMIT;') |