我想從SQL Server檢索數據到VB.NET文本框,但我不知道還有什麼要做的所有教程我只是從數據庫中檢索記錄到數據網格view..please幫助..顯示數據從SQL到VB.NET文本框
Private Sub txtrfid_KeyPress(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtrfid.KeyPress
cn.Open()
With cmd
.Connection = cn
.CommandText = "SELECT * FROM Students WHERE RFID like '%" & txtrfid.Text & "%'"
End With
MsgBox("Record Found!", MsgBoxStyle.Information, "Update")
da.SelectCommand = cmd
dt.Clear()
da.Fill(dt)
cn.Close()
txtname.Text = 'Firstname'
你想在同一時間('txtrfid_KeyPress')顯示只有一個名字? –
@ WingedPanther - 它的工作,但當我嘗試其他身份證號碼,它只顯示第一個數據。它應該顯示與我搜索的相同的id –
表中的_data type_字段「RFID」是什麼?你不應該使用像'%'&txtrfid.Text&'%'這樣的'RFID',它更好地使用'RFID ='&txtrfid.Text&'' –