如何避免在 MoveFirst 上重新执行查询
我在 ASP 页面中有一个查询。 在满足某些条件后,我获得的记录集必须打印在3个不同的表中。 因此,为了避免执行 3 次几乎相同的查询,我决定在记录集中搜索我需要的结果......所以我需要执行 RS.MoveFirst 两次。 但是...当我使用 SQL Profiler 进行分析时,我看到 MoveFirst 操作重新执行了我的查询...这正是我想要避免的。 如何缓存结果并仅在记录集中移动?
I have a query in a ASP page. The record set that I obtein must be printed in 3 different tables, after some conditions. So, for avoid extecuting 3 times almost the same query, I decided to search the recordset for the results I need...so I need to make a RS.MoveFirst two times.
But...when I analyzed with SQL Profiler, I saw that MoveFirst operation re-executes my query...exactly what I wanted to avoid.
How can I do the cache the results and only move around the recordset?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用断开连接的记录集
请注意,如果要向 sql 提供参数,则需要在连接和记录集之间使用 ADODB.Command 对象(不要试图使用字符串连接)。 原理仍然相同,使用客户端光标位置和静态记录集,然后分离并关闭连接。
Use a disconnected recordset
Note that if you have parameters to supply to your sql you will need to use an
ADODB.Command
object between the connection and recordset (don't be tempted to use string concatenation). Still the principle is the same use a client cursor location and static recordset then detach and close the connection.就我个人而言,我会简单地使用 rs.getRows() 并导航到数组中...您不仅确定您再也不会访问数据库,而且每次使用它时都应该看到性能的巨大提升
personally i would simply use
rs.getRows()
and navigate into the array... not only are u sure u never hit the database again you should see a huge gain of performance everytime you use it