Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

ADO 打开 方法


❮ 连接对象完整参考

Open 方法打开与数据源的连接。 连接打开后,您可以对数据源执行命令。

语法

connection.Open connectionstring,userID,password,options

参数 描述
connectionstring 可选。 包含连接信息的字符串值。 该字符串由以分号分隔的一系列参数=值语句组成。

Provider= 提供程序的名称
File Name= 包含连接信息的 文件
Remote Provider= 用于打开客户端连接的提供程序的名称
Remote Server= 用于打开客户端连接的服务器路径名
URL= 用于连接的绝对 URL 地址。

有关详细信息,请参阅 ConnectionString 属性。

userID 可选。 包含连接用户名 的字符串值
password 可选。 包含连接密码 的字符串值
options 可选。 一个 ConnectOptionEnum 值,用于确定此方法是在建立连接后还是之前返回。

示例

无 DSN 连接

<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open "c:/webdata/northwind.mdb"
%>

带 userID 和密码的无 DSN 连接
(将 conn.open 语句写在一行)

<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;
data source=c:/webdata/northwind.mdb;
userID=xxx;
password=yyy"
%>

ODBC 数据库连接

<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Open "northwind"
%>

ConnectOptionEnum

常量 描述
adConnectUnspecified -1 默认。 以同步方式 (之后) 打开连接。
adAsyncConnect 16 以异步方式 (之前) 打开连接。

❮ 连接对象完整参考
×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.