Show HN: Merge SQLite Databases with the same name from different folders (github.com) 1 points by juliov 10y ago ↗ HN
[–] boxidea 10y ago ↗ You can also attach other sqlite databases which might make it easier. attach database 'old-database.sqlite3' as old; insert into dbtable ( id, name ) select id, name from old.dbtable; Then you don't need to use Python to iterate through each row.
1 comment
[ 3.1 ms ] story [ 9.4 ms ] thread