vb.net 中的数据读取器
请帮助,我如何制作一个与此 for 循环等效的 while 循环。这样我就可以读取 mysql 数据库表中的一行并将其显示在 vb.net 的组合框中。
我使用此代码,但如果行中添加了 3 个或更多项目,它绝对没有用:
Dim i As Integer
Dim rdr As Odbc.OdbcDataReader
rdr = con.readfrom_drug_type_table()
For i = 0 To 1
If rdr.HasRows = True Then
rdr.Read()
ComboBox2.Items.Add(rdr("Drug_type"))
End If
Next i
我想读取 Drug_type 行中的所有数据 请帮忙,谢谢
Please help, how do I make a while loop equivalent of this for loop. So that I could read from one row in the table of mysql database and display it on the combobox in vb.net.
I use this code, but its definitely not useful if there are 3 or more items that are added in the row:
Dim i As Integer
Dim rdr As Odbc.OdbcDataReader
rdr = con.readfrom_drug_type_table()
For i = 0 To 1
If rdr.HasRows = True Then
rdr.Read()
ComboBox2.Items.Add(rdr("Drug_type"))
End If
Next i
I want to read all the data from that the Drug_type row
Please help, thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只想读取第一行而不是只使用
Update
If you want to read only first row than just use
Update
@普拉奈
您不需要嵌套循环。
@pranay
You don't need the nested loops.