Connection strings for SQL Server 2008

本文提供 SQL Server 2008 的 OLE DB 提供程序和 ODBC 驱动程序的连接字符串示例,包括标准安全性、受信任连接、多重活动结果集 (MARS)、数据加密、数据库镜像等功能。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

SQL Server Native Client 10.0 OLE DB Provider

Type:    OLE DB Provider
Usage:  Provider=SQLNCLI10
Manufacturer:  Microsoft
More info about this provider »
Standard security
Provider= SQLNCLI10; Server= myServerAddress; Database= myDataBase; Uid= myUsername;  Pwd= myPassword;
Are you using SQL Server 2008 Express? Don't miss the server name syntax Servername/SQLEXPRESS where you substitute Servername with the name of the computer where the SQL Server 2008 Express installation resides.
 
Trusted connection
Provider= SQLNCLI10; Server= myServerAddress; Database= myDataBase;  Trusted_Connection= yes;
Equivalent key-value pair: "Integrated Security=SSPI" equals "Trusted_Connection=yes"
 
Connecting to an SQL Server instance
The syntax of specifying the server instance in the value of the server key is the same for all connection strings for SQL Server.
Provider= SQLNCLI10; Server= myServerName/theInstanceName; Database= myDataBase; Trusted_Connection= yes;
 
 
Prompt for username and password
This one is a bit tricky. First you need to set the connection object's Prompt property to adPromptAlways. Then use the connection string to connect to the database.
oConn.Properties("Prompt") = adPromptAlways

oConn.Open "Provider= SQLNCLI10; Server= myServerAddress; DataBase= myDataBase;
 
 
Enabling MARS (multiple active result sets)
Provider= SQLNCLI10; Server= myServerAddress; Database= myDataBase;  Trusted_Connection= yes; MARS Connection= True;
Use ADO.NET for MARS functionality. MARS is not supported in ADO.NET 1.0 nor ADO.NET 1.1.
 
Encrypt data sent over network
Provider= SQLNCLI10; Server= myServerAddress; Database= myDataBase; Trusted_Connection= yes; Encrypt= yes;
 
 
Attach a database file on connect to a local SQL Server Express instance
Provider= SQLNCLI10; Server= ./SQLExpress; AttachDbFilename= c:/asd/qwe/mydbfile.mdf; Database= dbname;  Trusted_Connection= Yes;
Why is the Database parameter needed? If the named database have already been attached, SQL Server does not reattach it. It uses the attached database as the default for the connection.
 
Attach a database file, located in the data directory, on connect to a local SQL Server Express instance
Provider= SQLNCLI10; Server= ./SQLExpress; AttachDbFilename= |DataDirectory|mydbfile.mdf; Database= dbname; Trusted_Connection= Yes;
Why is the Database parameter needed? If the named database have already been attached, SQL Server does not reattach it. It uses the attached database as the default for the connection.
 
Database mirroring
If you connect with ADO.NET or the SQL Native Client to a database that is being mirrored, your application can take advantage of the drivers ability to automatically redirect connections when a database mirroring failover occurs. You must specify the initial principal server and database in the connection string and the failover partner server.
Provider= SQLNCLI10; Data Source= myServerAddress; Failover Partner= myMirrorServerAddress; Initial Catalog= myDataBase; Integrated Security= True;
There is ofcourse many other ways to write the connection string using database mirroring, this is just one example pointing out the failover functionality. You can combine this with the other connection strings options available.

SQL Server Native Client 10.0 ODBC Driver

Type:    ODBC Driver
Usage:  Driver={SQL Server Native Client 10.0}
Manufacturer:  Microsoft
More info about this driver »
Standard security
Driver= {SQL Server Native Client 10.0}; Server= myServerAddress; Database= myDataBase; Uid= myUsername; Pwd= myPassword;
Are you using SQL Server 2008 Express? Don't miss the server name syntax Servername/SQLEXPRESS where you substitute Servername with the name of the computer where the SQL Server 2008 Express installation resides.
 
Trusted Connection
Driver= {SQL Server Native Client 10.0}; Server= myServerAddress; Database= myDataBase; Trusted_Connection= yes;
Equivalent key-value pair: "Integrated Security=SSPI" equals "Trusted_Connection=yes"
 
Connecting to an SQL Server instance
The syntax of specifying the server instance in the value of the server key is the same for all connection strings for SQL Server.
Driver= {SQL Server Native Client 10.0}; Server= myServerName/theInstanceName; Database= myDataBase; Trusted_Connection= yes;
 
 
Prompt for username and password
This one is a bit tricky. First you need to set the connection object's Prompt property to adPromptAlways. Then use the connection string to connect to the database.
oConn.Properties("Prompt") = adPromptAlways

Driver= {SQL Server Native Client 10.0}; Server= myServerAddress; Database= myDataBase;
 
 
Enabling MARS (multiple active result sets)
Driver= {SQL Server Native Client 10.0}; Server= myServerAddress; Database= myDataBase; Trusted_Connection= yes;  MARS_Connection= yes;
Use ADO.NET for MARS functionality. MARS is not supported in ADO.NET 1.0 nor ADO.NET 1.1.
 
Encrypt data sent over network
Driver= {SQL Server Native Client 10.0}; Server= myServerAddress; Database= myDataBase; Trusted_Connection= yes; Encrypt= yes;
 
 
Attach a database file on connect to a local SQL Server Express instance
Driver= {SQL Server Native Client 10.0}; Server= ./SQLExpress; AttachDbFilename= c:/asd/qwe/mydbfile.mdf;  Database= dbname; Trusted_Connection= Yes;
Why is the Database parameter needed? If the named database have already been attached, SQL Server does not reattach it. It uses the attached database as the default for the connection.
 
Attach a database file, located in the data directory, on connect to a local SQL Server Express instance
Driver= {SQL Server Native Client 10.0}; Server= ./SQLExpress; AttachDbFilename= |DataDirectory|mydbfile.mdf; Database= dbname; Trusted_Connection= Yes;
Why is the Database parameter needed? If the named database have already been attached, SQL Server does not reattach it. It uses the attached database as the default for the connection.
 
Database mirroring
If you connect with ADO.NET or the SQL Native Client to a database that is being mirrored, your application can take advantage of the drivers ability to automatically redirect connections when a database mirroring failover occurs. You must specify the initial principal server and database in the connection string and the failover partner server.
Driver= {SQL Server Native Client 10.0}; Server= myServerAddress; Failover_Partner= myMirrorServerAddress; Database= myDataBase; Trusted_Connection= yes;
There is ofcourse many other ways to write the connection string using database mirroring, this is just one example pointing out the failover functionality. You can combine this with the other connection strings options available.

Please note if you are using TCP/IP (using the network library parameter) and database mirroring, including port number in the address (formed as servername,portnumber) for booth the main server and the failover partner can solve some reported issues.

 

 

文章出处:http://www.connectionstrings.com/sql-server-2008

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值