Export part of sq3 database | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Export part of sq3 database

Hi, I'm using python2 and sqlite3 and want to export a sql query. This query should be saved in the form that I can insert it again in my original database. Do I have to do this manual or does anybody know a neat trick? I found this functionality in the pycharm sql plugin (export as sql...) but I need it in python. Any hints or ideas are appreciated.

21st Sep 2017, 9:17 PM
Duke
3 Answers
+ 4
Within Python (no jumping out to shell automation) this answer tries to emulate the shell ".dump" command: https://stackoverflow.com/a/6677833 Surrounding answers show other dump methods (one goes by table and may work with a finer query).
21st Sep 2017, 10:09 PM
Kirk Schafer
Kirk Schafer - avatar
+ 3
If you were automating, you could send the ".mode" command directly to the sqlite3 binary. Here's a StackOverflow thread with mostly shell automation: https://stackoverflow.com/questions/75675/how-do-i-dump-the-data-of-some-sqlite3-tables I'll look for something within Python. sqlite> .mode insert sqlite> select * from Meta; INSERT INTO table VALUES(1,'me@example.com','/destination/dir','/source/dir','foo'); sqlite> The .mode command is visible when looking at .help: .mode MODE ?TABLE? Set output mode where MODE is one of: ascii Columns/rows delimited by 0x1F and 0x1E csv Comma-separated values column Left-aligned columns. (See .width) html HTML <table> code * THIS ONE* insert SQL insert statements for TABLE line One value per line list Values delimited by .separator strings tabs Tab-separated values tcl TCL list elements Schema for insert above: sqlite> .sch CREATE TABLE Meta (_id integer primary key autoincrement, accountId text, remoteRoot text, localRoot text, folderId text);
21st Sep 2017, 9:55 PM
Kirk Schafer
Kirk Schafer - avatar
+ 1
thank you for your answers
22nd Sep 2017, 6:02 AM
Duke