gpt4 book ai didi

mysql - 检查 MySQLReader 是否完成运行/查找记录 VB.Net

转载 作者:行者123 更新时间:2023-11-29 02:16:10 24 4
gpt4 key购买 nike

我想检查 MySQLReader 是否已完成查找我的记录。

到目前为止,这段代码帮助我找到了记录。

if reader.HasRows then
while reader.Read()
//codes
end while
else
//else condition codes
end if

我真的很想知道 Reader 是否完成运行。类似于 reader.Finished()//** 但没有像这段代码这样的东西**。有人可以帮忙吗?

最佳答案

reader.Read() 将在 Reader 完成阅读时返回 false。这将导致您的 while 循环终止。你可以这样做:

if reader.HasRows then
while reader.Read()
''codes
end while
''Do whatever it is you wanted to do when the reader is finished.
else
''else condition codes
end if

关于mysql - 检查 MySQLReader 是否完成运行/查找记录 VB.Net,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39360620/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com