我在VB中创建了一个应用程序。我已成功将应用程序连接到wamp localhost(同一台计算机)。但我无法从同一网络中的另一台计算机连接它。请帮我连接...
这是我的代码:
Dim server1 As String
Dim client1 As String
Dim cmd As New Odbc.OdbcCommand
server1 = "Driver={MySQL ODBC 5.1 Driver};Server=localhost;Database=db_checkvoucher;User=root;Password=;Option=3;"
client1 = "Driver={MySQL ODBC 5.1 Driver};server=192.168.1.2;" _
& "User=root;Password=;" _
& "database=db_checkvoucher;"
If Form1.TextBox1.Text = "1" Then
con.ConnectionString = client1
Else
con.ConnectionString = server1
End If
cmd.Connection = New Odbc.OdbcConnection(con.ConnectionString)
con.Open()
我收到此错误: 错误[HY000] [MySQL] [ODBC 5.1驱动程序]无法连接到'192.168.1.2'上的MySQL服务器(10060)错误[HY000] [MySQL] [ODBC 5.1驱动程序]无法连接到'192.168上的MySQL服务器.1.2'(10060) 我已经在服务器计算机上运行了wamp服务器。
答案 0 :(得分:1)
服务器上的防火墙可能存在问题。
有关如何允许mysql连接的说明,请参阅此处。 http://portforward.com/english/routers/firewalling/Microsoft/WindowsXPFirewallFirewall/MySQL_Server.htm