我正在尝试使用vb.net建立一个登录数据库。我正在使用此代码连接,但它不起作用!:
Public Class Form1
Private Sub Label2_Click(sender As Object, e As EventArgs) Handles Label2.Click
Dim con As New SqlConnection
Dim cmd As New SqlCommand
Dim rd As SqlDataReader
con.ConnectionString = "Data Source=localhost; Initial Catalog=user; Integrated Security= true"
cmd.Connection = con
con.Open()
cmd.CommandText = "select login, password from auth where login= '" & TextBox1.Text & "' and password = '" & TextBox2.Text & "' "
rd = cmd.ExecuteReader
If rd.HasRows Then
Welcome.Show()
Else
MessageBox.Show("Login Failed", "error")
End If
End Sub
End Class
我在sql server上有一个名为“user”的数据库,在user中有一个名为“dbo.auth”的表。当我单击label2时,visualbasic说“con cannot be opened”,我正在使用mysql server workbench。我有什么办法可以解决这个问题吗?服务器也在我的本地网络上运行。
1条答案
按热度按时间u91tlkcl1#
这对你有用吗?
此外,我认为你应该书签下面的链接。
https://www.connectionstrings.com/