Einzelnen Beitrag anzeigen

Benutzerbild von Back2Code
Back2Code

Registriert seit: 6. Feb 2012
Ort: Deutschland
272 Beiträge
 
Delphi XE7 Professional
 
#3

AW: MySQL Dump ziehen mit Delphi

  Alt 15. Apr 2013, 14:23
Danke @DataCool

Die Procedure hatte ich auch gefunden, aber mir war noch nicht so ganz klar wie ich die Parameter genau einsetze.

Hab es jetzt so gelöst und das läuft einwandfrei.

Delphi-Quellcode:
procedure TFrmCfg.SQLDump;
begin
  try
    UniDump.Connection.Connect;
    UniDump.TableNames := table;
    UniDump.BackupToFile(ExtractFilePath(Application.Exename) + 'Table Dump from ' + table + FormatDateTime('dd.mm.yyyy hh.nn.ss', now) + '.sql');
  finally

  end;
end;
  Mit Zitat antworten Zitat