Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

ADO NextRecordset 方法


❮ Recordset 对象完整参考

NextRecordset 方法用于清除当前的 Recordset 对象并通过循环遍历一系列命令返回下一个 Recordset 对象。此方法返回一个 Recordset 对象。

使用此方法返回复合命令语句中的下一个命令的结果,或返回多个结果的存储过程的下一个结果。例如,在复合命令语句中,如“SELECT * FROM table1;SELECT * FROM table2”,Command 上的 Execute 方法或 Recordset 上的 Open 方法将只执行第一个命令并将结果返回到 Recordset 对象。要访问语句中下一个命令的结果,请调用 NextRecordset 方法。

如果返回行的命令成功执行但未返回任何记录,则返回的 Recordset 对象将处于打开状态但为空(BOF 和 EOF 均为 True)。如果非返回行的命令成功执行,则返回的 Recordset 对象将被关闭(State 属性为 adStateClosed)。当没有更多结果时,Recordset 对象将设置为 Nothing。

语法

Set objRecordset2=objRecordset1.NextRecordset(ra)

注意:objRecordset1 和 objRecordset2 可以是同一个 Recordset 对象。


参数 描述
ra 可选。返回操作影响的记录数

❮ Recordset 对象完整参考
×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.