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.
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.
Copyright © 2021 Jogjafile Inc.
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