Click here to Skip to main content
15,897,718 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
hello i'm using restore & mysql utility which is available in codeproject
i have a project which is hosted in intranet when i restore a database using mysql utility from another machine it's gives a error input string was not in the correct format at mb.Export() method but locally it's works fine
my code is

C#
string sqlDumpFile = \\\\network\\Uploads\\InternetBackup\\abc.sql;
               
 string con = @"Server=1.1.1.;Database=xyz;uid=abc;pwd=abc;";
 MySqlBackup mb = new MySqlBackup(con);
mb.Export(sqlDumpFile); ///////////here i get the error "Input string was not correctly formeted"
Posted
Updated 2-Aug-12 3:07am
v2
Comments
AmitGajjar 2-Aug-12 9:27am    
can you provide us the link of that utility to restore/backup mysql ?
Joan M 2-Aug-12 10:12am    
I'm using PHPMyAdmin to access MySQL databases, it is easy to use and works... i.e. making backups exports, imports... is as easy as making 2 mouse clicks. Check it while you are waiting for a better answer.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900