1
I’m trying to do backup of my Android application, application made in Delphi. I am using the component TFDSQliteBackup
with the following code, it executes and creates the file, but the file is blank someone knows how to proceed??
try
try
DataModule1.FDConnection1.Close;
DataModule1.backup.DestDatabase:= '/storage/sdcard0/tedesco.controlefinanceiro.SQLITE3';
DataModule1.backup.Backup;
except
on e:Exception do
begin
ToastMessage(e.Message);
end;
end;
finally
ToastMessage('Backup Concluido');
end;
does not generate any exception?
– Caputo
error: Unable to open database
– Diego Limeira da Silva