Hi all,
I am planning to create a windows application, which is meant to retrieve the sql dump of a mysql database. What I need is the structure and the data as well.
You might ask why create this myself with the available software around, but I need this implemented with some extra custom features.
All I need is a text file with the dump in it... just as the dump you get when using:
Is there any Sql command that returns this dump?
Thanks
I am planning to create a windows application, which is meant to retrieve the sql dump of a mysql database. What I need is the structure and the data as well.
You might ask why create this myself with the available software around, but I need this implemented with some extra custom features.
All I need is a text file with the dump in it... just as the dump you get when using:
Code:
mysqldump –-user [user name] –-password=[password] [database name] > [dump file]
Thanks
Comment