asp中的adoCon.open返回任何值吗

发布于 2024-12-07 07:29:36 字数 262 浏览 0 评论 0原文

我正在使用以下命令在 asp 中建立与 mssql 服务器数据库的连接

adoCon.Open“Driver={SQL Server};Server=”&主机名 & “;数据库=” &数据库名称 & “;Uid=”&用户名 & “;密码=”&密码

现在我的问题是如何知道这个连接建立是否成功。 adoCon.open 是否返回任何可以在 if 语句中使用的值?

I am establishing a connection to a mssql server database in asp using the command

adoCon.Open "Driver={SQL Server}; Server=" & host_name & "; Database="
& db_name & "; Uid=" & user_name & "; Pwd=" & password

Now my question is how to know if this connection establishment was successful. Does adoCon.open returns any value which I can use in my if statement?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

善良天后 2024-12-14 07:29:36

我猜您正在使用 ADODB-ActiveX 对象...所以这将是属性 adoCon.State

  • adStateClosed 0 ->对象已关闭
  • adStateOpen 1 ->该对象已打开
  • adStateConnecting 2 ->对象正在连接
  • adStateExecuting 4 ->该对象正在执行命令
  • adStateFetching 8 ->正在检索对象的行

请在此处查找更多信息在此处输入链接说明

I guess you are useing ADODB-ActiveX object... so that would be the property adoCon.State.

  • adStateClosed 0 -> The object is closed
  • adStateOpen 1 -> The object is open
  • adStateConnecting 2 -> The object is connecting
  • adStateExecuting 4 -> The object is executing a command
  • adStateFetching 8 -> The rows of the object are being retrieved

find more information here enter link description here

濫情▎り 2024-12-14 07:29:36

此方法成功完成后,连接就处于活动状态并且
您可以对其发出命令并处理结果。

所以连接建立后就返回;如果由于任何原因无法创建它 - 无效的凭据、网络问题等 - 它将引发一个错误,您应该捕获该错误并执行该错误。处理内联或辅助例程。

function open(cn as adodb.connection) as boolean
on error goto handler
   cn.Open "Driver={SQL Server}; Server=" & host_name & "; Database=" & db_name & "; Uid=" & user_name & "; Pwd=" & password
   open=true
   exit function
handler:
    response.write "fail " & err.description
end function

After this method successfully completes, the connection is live and
you can issue commands against it and process the results.

So it returns when the connection is established; if for any reason it could not be created - invalid credentials, networking issue etc - it will raise an error which you should trap & deal with inline or in a helper routine.

function open(cn as adodb.connection) as boolean
on error goto handler
   cn.Open "Driver={SQL Server}; Server=" & host_name & "; Database=" & db_name & "; Uid=" & user_name & "; Pwd=" & password
   open=true
   exit function
handler:
    response.write "fail " & err.description
end function
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文