nccsbim071 25 Junior Poster

Hi everybody
I have been developing windows client application in .net framework 3.5. The system is supposed to copy the remote mysqldb and restore my local mysqldb with all the schema and data withing remote schema to my local mysqldb with the same database name.

Well i found a solution to this using a mysqldump command and executing it from .net by writing all the necessary command in a bat file and executing the bat file by invoking from .net.

But i was looking for a better solution.

The way we make a sqlserver db backup and restore usig SqlServer.Smo package in .net


I there any way to make a database backup and restore using mysql.data.client. or just copy my remote mysql database to my local mysql database. all using mysql.data.client.

Thanks