检测 ADO.Recordset 中的最后一条记录?
如果我循环遍历 ADO.Recordset(使用 而不是 recordSet.EOF),有没有办法检测到我在最后一条记录上?
If I am looping through an ADO.Recordset (with while not recordSet.EOF), is there a way to detect that I'm on the last record?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
`
'
记录集的 AbsolutePosition 属性提供三个值:adPosBOF、adPosEOF 和 adPosUnknown,最后一个用于我们数据库中的 NO-RECORDS。
我希望这对你有帮助。
`
'
The AbsolutePosition Property of recordset give three values: adPosBOF, adPosEOF and adPosUnknown, this last is for NO-RECORDS in our DB.
I hope this help you.
或者您可以直接调用 MoveLast。
Or you could just call MoveLast.