Click here to Skip to main content
15,924,935 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All

here i try connect asp.net with online mysql , locally working good by using mysql 5 and workbench(GPL) but when i try to connect with my cpanel database i have faced prob

My Asp Coding :

C#
protected void Page_Load(object sender, EventArgs e)
   {
       if(!IsPostBack)
       {
         string strConstr= ConfigurationManager.ConnectionStrings["constr"].ConnectionString;
           using (MySqlConnection con = new MySqlConnection(strConstr))
           {
               using (MySqlCommand cmd = new MySqlCommand("SELECT * FROM logintb"))
               {
                   using (MySqlDataAdapter sda = new MySqlDataAdapter())
                   {
                       cmd.Connection = con;
                       sda.SelectCommand = cmd;
                       using (DataTable dt = new DataTable())
                       {
                           //Response.Write("Connection String Working");
                           sda.Fill(dt);
                           grdLogin.DataSource = dt;
                           grdLogin.DataBind();
                       }
                   }
               }
           }
       }
   }


webConfig

C#
<add name="constr" connectionString="Server=103.14.120.89;Database=akshayag_db;Uid=aksha_DB;Pwd=root@123!;"/>


ip address from that cpanel and i have created db and table also but not working showing error in sda.Fill(dt);

like

Unable to connect to any of the specified MySQL hosts.

thanks
Posted
Comments
ZurdoDev 4-Sep-15 9:33am    
You have to talk to your hoster to find out what the connection string should be.
ZurdoDev 4-Sep-15 9:33am    
What is the error that you get?
sreeyush sudhakaran 6-Sep-15 1:51am    
Have u tried alternatively using cmd.ExecuteNonQuery(); see what exception it throws

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