Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to backup mysql DB from delphi?

Status
Not open for further replies.

strucnjak79

Programmer
Oct 14, 2005
37
0
0
BA
I need to backup a mysql DB from my delphi app! MySQL DB is on remote server running on linux! Does anybody know the way to do this?
 
I have no idea.

However you could try this.

Have a dummy file which you FTP to the Linux box when you want to backup.

On the Linux bock write a cronjob. If it detects the file then if performs the backup and the erases the file, ready for next backup.
 
Another method a bit more complicated, and I never tried it.

Use a TCP client with socket and connect to server using telnet. Use a thread to monitor "login:" and set user name then monitor "password:" and send password, then send the backup command, and wait for response. This way you can check the success of the backup.

I have never exactly tried this method, but I used the TCP client in a similar fashion.

Check out the "chat client / server" demo for example on how to check for the strings and send and recieve packets.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top