不带游标打开记录集
一般来说,我使用以下语句连接到数据库;
rs.open“查询”,db,1,3
现在我尝试了(没有游标)
rs.open“查询”,db
新的带来了很大的性能提升。
所以我想问一下如果我没有在连接中设置游标,默认的游标是什么?
generally, i connect to db with the following statement;
rs.open "query",db,1,3
now i tried (without cursors)
rs.open "query",db
the new one bring a big performance increase.
so i like to ask you if i don't set cursors in connection, what cursors are default?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MSDN 参考
您拥有的是 adOpenKeyset和 adLockOptimistic。
MSDN Reference
What you had were adOpenKeyset and adLockOptimistic.