• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

防止ADO连接SQL Server时的隐式连接_sqlserver

sqlserver 搞代码 7年前 (2018-06-16) 135次浏览 已收录 0个评论

防止ADO连接SQL Server时的隐式连接
Report Date:   2002/9

Prepared by:     郑            昀

Article last modified on 2002-9

http://www.gaodaima.com/35594.html防止ADO连接SQL Server时的隐式连接_sqlserver

The information in this article applies to:

ü         Microsoft SQL Server 2000,7.0

ü         Microsoft ADO 2.5
问题陈述:
数据库服务器:Microsoft SQL Server 2000以及7.0;

数据库服务器补丁:Microsoft SQL Server 2000 ServicePack1;

ADO名称:Microsoft Data access – ActiveX Data Objects 2.5 Type Library

ADO版本:2.61.7326.0

 

执行下面的VB代码时,我们的开发人员产生了疑问:

 cnn.Open “Provider=SQLOLEDB.1;

Persist Security Info=False;User ID=sa;

Initial Catalog=freemail;Data Source=svr;ConnectionTimeout=10″, “”, “”, -1
       sql = “select * from users”

    Set rs = cnn.Execute(sql)
      Set rs2 = cnn.Execute(sql)
      Set rs3 = cnn.Execute(sql)

执行这段代码时,在SQL Server Profiler中看到,每个sql语句执行之前都会有一个Audit Login事件。而Audit Login事件的解释是:“收集自跟踪启动后发生的所有新的连接事件,例如客户端请求连接到运行 Microsoft® SQL Server™ 实例的服务器”。也就是说,用Connection对象连接SQL Server之后,每次执行sql语句时仍然会重新建立一次连接,即使用的是同一个Connection?!

建立连接的事件探查记录(按时间顺序)为:

 

EventClass

Text Data

TraceStart

 

Audit Login

(第一次连接)

— network protocol: LPC

set quoted_identifier on

set implicit_transactions off

set cursor_close_on_commit off

set ansi_warnings on

set ansi_padding on

set ansi_nulls on

set concat_null_yields_null on

set language 简体中文

set dateformat ymd

set datefirst 7

SQL:Stm tStarting

Select * from users

Audit Login

(第2次连接)

— network protocol: LPC

set quoted_identifier on

set implicit_transactions off…略

SQL:Stm tStarting

Select * from users

Audit Login

(第3次连接)

— network protocol: LPC

set quoted_identifier on

set implicit_transactions off…略

SQL:Stm tStarting

Select * from users

Audit Logout

 

Audit Logout

 

Audit Logout

 

TraceStop

 

 

而如果每句cnn.Execute后面加上rs.close(),则每个execute之前不会有Audit Login事件,而是连续的3个SQL:StmtStarting事件。

这样频繁建立物理连接,是否会影响性能?照例说应该重用同一个连接才对呀?
Cause:
这种情况叫做隐式登录。

当set一个ADO.Recordset对象接收ADO.Connection.Execute返回的记录集时,就会出现隐式登录,再次和数据库服务器建立一次物理连接,而且这个连接还没有办法重用,也不能池化。

这个的原因是:

Because the SQL Server OLE DB provider doesn’t permit more than one set of results to be pending on a connection where the results are being returned by means of a forward-only, read-only (default-resultset) cursor, the provider needs to create an additional SQL Server connection to execute a second command on the connection. The provider will only do this implicitly if the Data Source property DBPROP_MULTIPLECONNECTIONS is set to VARIANT_TRUE.

 

可以参考微软的KB文档:

http://support.microsoft.com/default.aspx?scid=kb;EN-GB;q271128&GSSNB=1

《PRB: Implicit Connections Created by the SQL Server OLE DB Provider (SQLOLEDB) Are Not Pooled》

 
【不会重复建立数据库连接的代码片断】:
 
通过改变ADO.Recordset的属性避免隐式登录 
Dim cn As New ADODB.Connection
Dim rs As New ADODB.Recordset
Dim rs2 As New ADODB.Recordset
cn.open ……….

 

rs.CursorType = adOpenStatic

rs.ActiveConnection = cn
rs.Open “select * from orders”

rs.CursorType = adOpenStatic
rs2.ActiveConnection = cn
rs2.Open “select * from orders”

看来,确实如微软所说的,只有接收默认的记录集时才会发生隐式连接。如果设置ADO.Recordset为其它类型,如静态集,就不会发生这个问题。

当然,默认的记录集的属性forward-only、read-only情况执行速度最快。

 

Writen by [email protected]

 

本文档所包含的信息代表了在发布之日,ZhengYun 对所讨论问题的当前看法,Zhengyun 不保证所给信息在发布之日以后的准确性。
本文档仅供参考。对本文档中的信息,Zhengyun 不做任何明示或默示的保证。

欢迎大家阅读《防止ADO连接SQL Server时的隐式连接_sqlserver,跪求各位点评,若觉得好的话请收藏本文,by 搞代码


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:防止ADO连接SQL Server时的隐式连接_sqlserver

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址