我正在爲一個在線表單項目工作,我似乎無法找到如何從SQL數據庫獲取值並根據字符串驗證它,在數據庫= A和TextBox.text Q1 = ASQL數據庫驗證字符串
下面是到目前爲止我的代碼,但似乎無法工作,在這個有些變量是全球性的,
Dim Question As String = "Q" & count
Dim textVal As String = TextBox.Text
Dim conn As SqlClient.SqlConnection = New SqlClient.SqlConnection
Dim dbSource As String = "Data Source=(LocalDB)\v11.0;AttachDbFilename=C:\Users\ben.miles\documents\visual studio 2012\Projects\WebTraningQuestions\WebTraningQuestions\App_Data\Usertest.mdf"
Dim ds As New DataSet
Dim sql As String = "SELECT FROM SAP"
Dim da As SqlClient.SqlDataAdapter = New SqlClient.SqlDataAdapter(sql, conn)
conn.ConnectionString = dbSource
Dim SqSearch As String = "%" & textVal & "%"
Dim sqlQ1 As String = sql & " WHERE Questions LIKE SqSearch"
Dim cmd1 As New SqlCommand(sqlQ1, conn)
conn.Open()
'This is where I cant get my code right but if you see below. I would like it something like this.
If TextBox.Text = (database) Then
Label.Text = "Correct"
Label.ForeColor = Drawing.Color.Green
Else
Label.Text = "Wrong"
Label.ForeColor = Drawing.Color.Red
End If
這是什麼(數據庫)? – 2013-04-24 10:29:22
(數據庫)是我不能縫編程的代碼,所以我刪除了它,這樣有人可以更容易編程一些東西 – 2013-04-24 10:31:24