文档介绍:This page contains sample ADO connection strings for ODBC DSN / DSN-Less,
OLE DB Providers, Remote Data Services (RDS), MS Remote, MS DataShape.
Also included are connection strings for each .NET Managed Provider
(SQLClient, OLEDB, and ODBC).
ODBC DSN Connections
Using an ODBC DSN (Data Source Name) is a two step process.
1) You must first create the DSN via the "ODBC Data Source Administrator" program
found in puter’s Control Panel (or Administrative Tools menu in Windows 2000).
Make sure to create a SYSTEM DSN (not a USER DSN) when using ASP.
Note: You can also create the DSN via VB code.
2) Then use the following connection string - with your own DSN name of course. ;-)
ODBC - DSN
"DSN=AdvWorks;" & _
"Uid=Admin;" & _
"Pwd=;
You can also create and use a File DSN. Then use the following ADO Connection string:
ODBC - File DSN
"FILEDSN=c:\somepath\;" & _
"Uid=Admin;" & _
"Pwd=;"
For more information, see: About ODBC data sources and
How to Use File DSNs and DSN-less Connections
Note: The problem with DSN is that Users can (and will) modify them (or delete by mistake),
then your program won’t work so well... So it’s better to use a DSN-Less or OLE DB Provider
connection string with a Trusted Connection if possible!
ODBC DSN-Less Connections
ODBC Driver for AS/400
"Driver={Client Access ODBC Driver (32-bit)};" & _
"System=myAS400;" & _
"Uid=myUsername;" & _
"Pwd=myPassword;"
ODBC Driver for Access
For Standard Security:
"Driver={Microsoft Access Driver (*.mdb)};" & _
"Dbq=c:\somepath\;" & _
"Uid=Admin;" & _
"Pwd=;"
If you are using a Workgroup (System database):
"Driver={Microsoft Access Driver (*.mdb)};" & _
"Dbq=c:\somepath\;" & _
"SystemDB=c:\somepath\;", _
"admin", ""
If MDB is located on work share:
"Driver={Microsoft Access Driver (*.mdb)};" & _
"Dbq=\\