Backup component in Delphi for MySQL database

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
joba
Posts: 1
Joined: Thu 30 Jun 2022 16:17

Backup component in Delphi for MySQL database

Post by joba » Thu 30 Jun 2022 16:22

Is there a Delphi component available that I can use to backup a MySQL database from a Delphi application?

pavelpd
Devart Team
Posts: 109
Joined: Thu 06 Jan 2022 14:16

Re: Backup component in Delphi for MySQL database

Post by pavelpd » Tue 05 Jul 2022 06:26

Hi there!
Thanks for contacting us.

To work with MySQL, our UniDAC and MyDAC products contain components responsible for data backup.
You can learn more about the products by following the links:
https://www.devart.com/unidac/
https://www.devart.com/mydac/

For UniDAC it is a TUniDump component - the class that serves for storing data from tables or editable views as a script and for restoring data from a received script. TUniDump works on the client side.

For MyDAC it is TMyDump and TMyBackup components.

TMyDump - a component for storing database or its parts as a script and also for restoring database from the received script. TMyDump works on the client side.

TMyBackup - a component that serves for backup copying specified tables on the server. TMyBackup works on the server side.

You can read about using components in our online documentation at the following links:
- TUniDump: https://docs.devart.com/unidac/devart.u ... nidump.htm
- TMyDump and TMyBackup:
https://docs.devart.com/mydac/devart.mydac.tmydump.htm
https://docs.devart.com/mydac/devart.my ... backup.htm

To get acquainted with UniDAC and MyDAC products, you can download and install the Trial version:
https://www.devart.com/UniDAC/download.html
https://www.devart.com/MyDAC/download.html

Post Reply