This is probably pretty simple, but I can't find the answer in the docs. Anyway I need to programmatically create a backup of a mysql table. Typically I would just invoke a "mysqldump" from a batch file or shell script. In this specific project I cannot access any batch files or outside shell scripts. I can also not use System.Diagnostrics.Process classes to simulate running mysqldump from the command line.
This leaves me with accomplishing this task from within the MySQL .NET Connector. How can I mimic "mysqldump" from within a query (in Windows) that I can send to my connection instance then execute?
Thoughts?