Jquery中文网 www.jquerycn.cn
Jquery中文网 >  脚本编程  >  Asp.net  >  正文 ADO连接数据库字符串大全

ADO连接数据库字符串大全

发布时间:2018-10-05   编辑:www.jquerycn.cn
jquery中文网为您提供ADO连接数据库字符串大全等资源,欢迎您收藏本站,我们将为您提供最新的ADO连接数据库字符串大全资源
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 ADO.NET 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 your computer’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
 
oConn.Open "DSN=AdvWorks;" & _
          "Uid=Admin;" & _
          "Pwd=;
You can also create and use a File DSN. Then use the following ADO Connection string:
ODBC - File DSN
 
oConn.Open "FILEDSN=c:somepathmydb.dsn;" & _
          "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!

您可能感兴趣的文章:
ASP ADO
ADO连接数据库字符串大全
ADO技术简介
在VB6中动态创建使用ADO控件访问数据库
ASP.NET 数据库连接方式
ASP 3.0高级编程(三十八)
ADO Connection 对象
ADO 与ADO.NET
php ADO组件连接access数据库的例子
从ASP迁移至ASP --最初的考虑(一)

[关闭]