When executing the following code, the database file only has table names. No field names or actual data seems to be getting copied over.
procedure TdbModule.BackupDB();
begin
ADConnection1.Connected := True;
ADSQLiteBackup1.DatabaseObj := ADConnection1.CliObj;
ADSQLiteBackup1.DestDatabase := 'd:\dan.sdb';
ADSQLiteBackup1.Backup;
end;
The dan.sdb
file is being created, it just lacks any backup data. The application displays data and works fine.
Ideas?