Please visit our sponsors !
The Open Method
The Open method opens a connection to a data source. When the connection
is open, you can execute commands against the data source.
Syntax
connection.Open connectionstring,userid,psword,options
|
Parameter |
Description |
connectionstring |
Optional. A string value that contains information about the connection.
The string is composed of a series of parameter=value statements separated by semicolons.
Provider= the name of the provider
File Name= the file that contains the connection information
Remote Provider= the name of the provider to open a client-side connection
Remote Server= the path name to the server to open a client-side
connection
URL= the absolute URL address to use for the connection.
See the ConnectionString property for details.
|
userid |
Optional. A String value that contains a user name for the connection
|
psword |
Optional. A String value that contains a password for the connection
|
options |
Optional. A ConnectOptionEnum
value that determines whether this method should return after or before
the connection is established.
|
Example
A DSN-less connection:
<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open "c:/webdata/northwind.mdb"
%>
An ODBC Database Connection:
<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Open "northwind"
%>
|
ConnectOptionEnum
Constant |
Value |
Description |
adConnectUnspecified |
-1 |
Default. Opens the connection synchronously (after). |
adAsyncConnect |
16 |
Opens the connection asynchronously (before). |
Jump to: Top of Page
or HOME or
Printer friendly page
Search W3Schools:
What Others Say About Us
Does the world know about us? Check out these places:
Dogpile
Alta Vista
MSN
Google
Excite
Lycos
Yahoo
Ask Jeeves
We Help You For Free. You Can Help Us!
W3Schools is for training only. We do not warrant its correctness or its fitness for use.
The risk of using it remains entirely with the user. While using this site, you agree to have read and accepted our
terms of use and
privacy policy.
Copyright 1999-2002 by Refsnes Data. All Rights Reserved
|