یه برنامه دارم مینویسم که با یه ویندوز پزوگرامینگ بتونم به پایگاه داده مای اسکیو ال ارتباط داشته باشه ولی یخ ارور روی خط اوپین برنامه میده کانکشن استرینگ من هم به این شکله
mysqlconnection.ConnectionString = server=mysql.xzn.iruserid=********password=********database=*******
و این ارور رو میده
mysqlconnection = New MySqlConnection
mysqlconnection.ConnectionString = server=mysql.xzn.iruserid=**********password=********database=***********
Try
mysqlconnection.Open()
Catch myerror As MySqlException
MsgBox(myerror.ToString())
End Try
Dim myadapter As New MySqlDataAdapter
Dim sqlquery = select * from table1
Dim command As New MySqlCommand
command.Connection = mysqlconnection
command.CommandText = sqlquery
myadapter.SelectCommand = command
Dim mydata As MySqlDataReader
mydata = command.ExecuteReader
If mydata.HasRows = 0 Then
MsgBox(error)
Else
MsgBox(ok)
End If
End Sub
این قطعه کدی هست که برای تست اتصال نوشتم
اینم ارورش