Restore Mysql database query is not working in ASP.NET, C#

santhoshahp

New member
Joined
Dec 22, 2010
Messages
3
Programming Experience
Beginner
Dear Sir/Madam,

we are using Mysql.exe to restore database by the following query

string cmd ="-h" + ViewState["host"].ToString() + " " + "-u" + ViewState["user"].ToString() + " " + "-p" + ViewState["password"].ToString() + " " + ViewState["dbName"].ToString() + "<" + " " + Server.MapPath("BackupFiles/") + path;

The same query is executing in MySql command prompt but we are not able to restore using the above query in VisualStudio .Net, we have tried MysqlImport.exe to do the restore but it was no use. we are newbie to MySql if any help would be appreciated.

With Regards,

Santhosha
 
This is a VB.Net forum, but a VB.Net developer may be able to help you also. Thread not deleted.
 
Back
Top