SQLite archiving using Delphi

594 Views Asked by At

Is there any way in Delphi to archive all my sqlite3 tables in db A into db B(sqlite3)?

Background: I want to save away all of old data to db B and clean db A. The old data needs to be restored to the db A on demand.

1

There are 1 best solutions below

0
On

SQLite C API has backup functions: https://www.sqlite.org/c3ref/backup_finish.html

If your current SQLite component(s) doesn't provide access, there's a unit to sqlite3.dll functions here: https://github.com/stijnsanders/TSQLite/blob/master/SQLite.pas#L546