如何避免在 MoveFirst 上重新执行查询

发布于 2024-07-30 17:22:44 字数 210 浏览 10 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一梦浮鱼 2024-08-06 17:22:44

使用断开连接的记录集

Const adOpenStatic = 3
Const adUseClient = 3
Const adLockOptimistic = 3

Dim conn: Set conn = Server.CreateObject("ADODB.Connection")
conn.Open sYourConnectionString

Dim rs : Set rs = Server.CreateObject("ADODB.Recordset")
rs.CursorLocation = adUseClient

rs.Open sYourSQL, conn, adOpenStatic, adLockOptimistic

Set rs.ActiveConnection = Nothing
conn.close

'' // You can now roam around the recordset with .MoveFirst, .MoveNext etc without 
'' // incurring any further hits on the DB.

请注意,如果要向 sql 提供参数,则需要在连接和记录集之间使用 ADODB.Command 对象(不要试图使用字符串连接)。 原理仍然相同,使用客户端光标位置和静态记录集,然后分离并关闭连接。

Use a disconnected recordset

Const adOpenStatic = 3
Const adUseClient = 3
Const adLockOptimistic = 3

Dim conn: Set conn = Server.CreateObject("ADODB.Connection")
conn.Open sYourConnectionString

Dim rs : Set rs = Server.CreateObject("ADODB.Recordset")
rs.CursorLocation = adUseClient

rs.Open sYourSQL, conn, adOpenStatic, adLockOptimistic

Set rs.ActiveConnection = Nothing
conn.close

'' // You can now roam around the recordset with .MoveFirst, .MoveNext etc without 
'' // incurring any further hits on the DB.

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.

风尘浪孓 2024-08-06 17:22:44

就我个人而言,我会简单地使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文