I'm new to mysql. I am trying to create a vb2005 application that uses mysql database that I have created here (x10hosting). Also, downloaded and installed all the necessary MySQL connectors and drivers for my vb2005 from MySQL.com.
code:
dim Connstring as string = "Data Source=dvillarjr.exofire.net;" & _
"User ID=devillar_dvillar;" & _
"Password=password;" & _
"database=devillar_PPSInbox;"
Dim cnnDB As MySqlConnection = New MySqlConnection(Connstring)
Try
cnnDB.Open()
...
I keep getting the error when opening my connection:
"(1042): Unable to connect to any of the specified SQL host."
I have also tried adding my IP address on Remote Database... in the CP. and
I have also tried replacing my data source with the Shared IP displayed in the CP
why is that?
TY
code:
dim Connstring as string = "Data Source=dvillarjr.exofire.net;" & _
"User ID=devillar_dvillar;" & _
"Password=password;" & _
"database=devillar_PPSInbox;"
Dim cnnDB As MySqlConnection = New MySqlConnection(Connstring)
Try
cnnDB.Open()
...
I keep getting the error when opening my connection:
"(1042): Unable to connect to any of the specified SQL host."
I have also tried adding my IP address on Remote Database... in the CP. and
I have also tried replacing my data source with the Shared IP displayed in the CP
why is that?
TY
Last edited: