Hello
If I am correct, currently if I do a database backup using TMyDump, the generated SQL are stored in the SQL, which is of TStrings type, and save to files using following:
pMyDump->Backup();
pMyDump->SQL->SaveToFile(FileName);
If the database is quite big, such will fail due to memory shortage and also very low speed.
Comparing to the backup in MySQLAdministrator, which directly save to a file, I think of an extension of new method BackupToFile(FileName)/RestoreFromFile(FileName) in TMyDump. How about your opinion?