私の目的は、ユーザーの入力に基づいて主キーを見つけることです。
テーブルの内容は次のとおりです: ユーザー ID、アカウント、パスワード。
userID は主キーと整数型として設定されます。
アカウントは varchar 型として設定されます。
パスワードは varchar 型として設定されます。
これは、ユーザー入力を検証するために現時点で入手したコードです。
Dim account As String = txtAcc.Text
Dim password As String = txtPss.Text
For Each Me.dr In atadap.GetData
If dr.Item(1) = account And dr.Item(2) = password Then
**[retrieve userID for specified data row]**
MsgBox("Access granted!")
Me.Hide()
frmMenu.Show()
Exit For
Else
MsgBox("Access denied!")
txtAcc.Text = ""
txtPss.Text = ""
Exit For
End If
Next
これが私の研究で使用したリンクです: http://msdn.microsoft.com/en-us/library/y06xa2h1.aspx
しかし、まだそれを行う方法を理解できませんでした。どんな助けでも大歓迎です。よろしくお願いします。