我有两个文本框,一个用于ProductName,第二个用于ProductPrice。
输入txtProductPrice
时,我无法从数据库中获取txtProductname
值。请帮帮我
以下是我要执行的代码......
Try
conn.Open()
cmd.Connection = conn
cmd.CommandText = "SELECT price FROM products WHERE name = '" & txtPN.Text & "'"
dr = cmd.ExecuteReader
If dr.Read Then
'what will i do here???
End If
conn.Close()
Catch ex As Exception
MsgBox(ex.Message)
End Try