Connection strings for SQL Server 2005 http://www.connectionstrings.com/

本文详细介绍了多种场景下SQL Server的连接字符串配置方法,包括标准安全连接、受信任连接、通过IP地址连接、启用MARS(多活动结果集)、数据库镜像等功能,并提供了不同驱动和环境下的示例。

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

Standard Security
Data Source= myServerAddress; Initial Catalog= myDataBase; User Id= myUsername; Password= myPassword;
Use serverName/instanceName as Data Source to connect to a specific SQL Server instance.

Are you using SQL Server 2005 Express? Don't miss the server name syntax Servername/SQLEXPRESS where you substitute Servername with the name of the computer where the SQL Server 2005 Express installation resides.
 
Standard Security alternative syntax
This connection string produce the same result as the previous one. The reason to include it is to point out that some connection string keywords have many equivalents.
Server= myServerAddress; Database= myDataBase; User ID= myUsername; Password= myPassword; Trusted_Connection= False;
 
 
Trusted Connection
Data Source= myServerAddress; Initial Catalog= myDataBase; Integrated Security= SSPI;
 
 
Trusted Connection alternative syntax
This connection string produce the same result as the previous one. The reason to include it is to point out that some connection string keywords have many equivalents.
Server= myServerAddress; Database= myDataBase; Trusted_Connection= True;
 
 
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.
Server= myServerName/theInstanceName; Database= myDataBase; Trusted_Connection= True;
 
 
Trusted Connection from a CE device
Often a Windows CE device is not authenticated and logged in to a domain. To use SSPI or trusted connection / authentication from a CE device, use this connection string.
Data Source= myServerAddress; Initial Catalog= myDataBase; Integrated Security= SSPI; User ID= myDomain/myUsername; Password= myPassword;
Note that this will only work on a CE device.
 
Connect via an IP address
Data Source= 190.190.200.100,1433; Network Library= DBMSSOCN; Initial Catalog= myDataBase; User ID= myUsername; Password= myPassword;
DBMSSOCN=TCP/IP. This is how to use TCP/IP instead of Named Pipes. At the end of the Data Source is the port to use. 1433 is the default port for SQL Server.
 
Enabling MARS (multiple active result sets)
Server= myServerAddress; Database= myDataBase; Trusted_Connection= True; MultipleActiveResultSets= true;
Use ADO.NET 2.0 for MARS functionality. MARS is not supported in ADO.NET 1.0 nor ADO.NET 1.1.
 
Attach a database file on connect to a local SQL Server Express instance
Server= ./SQLExpress; AttachDbFilename= c:/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
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.
 
Using an User Instance on a local SQL Server Express instance
The User Instance functionality creates a new SQL Server instance on the fly during connect. This works only on a local SQL Server 2005 instance and only when connecting using windows authentication over local named pipes. The purpose is to be able to create a full rights SQL Server instance to a user with limited administrative rights on the computer.
Data Source= ./SQLExpress; Integrated Security= true; AttachDbFilename= |DataDirectory|/mydb.mdf; User Instance= true;
To use the User Instance functionality you need to enable it on the SQL Server. This is done by executing the following command: sp_configure 'user instances enabled', '1'. To disable the functionality execute sp_configure 'user instances enabled', '0'.
 
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.
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.
 
Asynchronous processing
A connection to SQL Server 2005 that allows for the issuing of async requests through ADO.NET objects.
Server= myServerAddress; Database= myDataBase; Integrated Security= True; Asynchronous Processing= True;
 
 

SQL Native Client 9.0 OLE DB provider

Type:    OLE DB Provider
Usage:  Provider=SQLNCLI
Manufacturer:  Microsoft
More info about this provider »
Standard security
Provider= SQLNCLI; Server= myServerAddress; Database= myDataBase; Uid= myUsername; Pwd= myPassword;
Are you using SQL Server 2005 Express? Don't miss the server name syntax Servername/SQLEXPRESS where you substitute Servername with the name of the computer where the SQL Server 2005 Express installation resides.
 
Trusted connection
Provider= SQLNCLI; 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= SQLNCLI; 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= SQLNCLI; Server= myServerAddress; DataBase= myDataBase;
 
 
Enabling MARS (multiple active result sets)
Provider= SQLNCLI; Server= myServerAddress; Database= myDataBase; Trusted_Connection= yes; MARS Connection= True;
Use ADO.NET 2.0 for MARS functionality. MARS is not supported in ADO.NET 1.0 nor ADO.NET 1.1.
 
Encrypt data sent over network
Provider= SQLNCLI; Server= myServerAddress; Database= myDataBase; Trusted_Connection= yes; Encrypt= yes;
 
 
Attach a database file on connect to a local SQL Server Express instance
Provider= SQLNCLI; Server= ./SQLExpress; AttachDbFilename= c:/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= SQLNCLI; 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= SQLNCLI; 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.
 

.NET Framework Data Provider for OLE DB

Type:    .NET Framework Wrapper Class Library
Usage:  System.Data.OleDb.OleDbConnection
Bridging to SQL Native Client OLE DB
This is just one connection string sample for the wrapping OleDbConnection class that calls the underlying OLEDB provider. See respective OLE DB provider for more connection strings to use with this class.
Provider= SQLNCLI; Server= myServerAddress; Database= myDataBase; Uid= myUsername; Pwd= myPassword;
 
 

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 2005 Express? Don't miss the server name syntax Servername/SQLEXPRESS where you substitute Servername with the name of the computer where the SQL Server 2005 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 2.0 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:/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 Native Client 9.0 ODBC Driver

Type:    ODBC Driver
Usage:  Driver={SQL Native Client}
Manufacturer:  Microsoft
More info about this driver »
Standard security
Driver= {SQL Native Client}; Server= myServerAddress; Database= myDataBase; Uid= myUsername; Pwd= myPassword;
Are you using SQL Server 2005 Express? Don't miss the server name syntax Servername/SQLEXPRESS where you substitute Servername with the name of the computer where the SQL Server 2005 Express installation resides.
 
Trusted Connection
Driver= {SQL Native Client}; 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 Native Client}; 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 Native Client}; Server= myServerAddress; Database= myDataBase;
 
 
Enabling MARS (multiple active result sets)
Driver= {SQL Native Client}; Server= myServerAddress; Database= myDataBase; Trusted_Connection= yes; MARS_Connection= yes;
Use ADO.NET 2.0 for MARS functionality. MARS is not supported in ADO.NET 1.0 nor ADO.NET 1.1.
 
Encrypt data sent over network
Driver= {SQL Native Client}; Server= myServerAddress; Database= myDataBase; Trusted_Connection= yes; Encrypt= yes;
 
 
Attach a database file on connect to a local SQL Server Express instance
Driver= {SQL Native Client}; Server= ./SQLExpress; AttachDbFilename= c:/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 Native Client}; 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.
 

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;
 
 
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.
 

.NET Framework Data Provider for ODBC

Type:    .NET Framework Wrapper Class Library
Usage:  System.Data.Odbc.OdbcConnection
Bridging to SQL Native Client 10.0 ODBC Driver
This is just one connection string sample for the wrapping OdbcConnection class that calls the underlying ODBC Driver. See respective ODBC driver for more connection strings to use with this class.
Driver= {SQL Server Native Client 10.0}; Server= myServerAddress; Database= myDataBase; Uid= myUsername; Pwd= myPassword;
 
 

SQLXML 4.0 OLEDB Provider

Type:    OLE DB Provider
Usage:  Provider=SQLXMLOLEDB.4.0;Data Provider=providername
Manufacturer:  Microsoft
More info about this provider »
Using SQL Server Native Client provider
Provider= SQLXMLOLEDB.4.0; Data Provider= SQLNCLI; Data Source= myServerAddress; Initial Catalog= myDataBase; User Id= myUsername; Password= myPassword;
 
 

Context Connection

Type:    .NET Framework Class Library
Usage: 
Manufacturer:  Microsoft
More info about this class library »
Context Connection
Connecting to "self" from within your CLR stored prodedure/function. The context connection lets you execute Transact-SQL statements in the same context (connection) that your code was invoked in the first place.
C#
 using(SqlConnection connection = new SqlConnection("context connection=true"))
 {
     connection.Open();
     // Use the connection
 }

VB.Net
 Using connection as new SqlConnection("context connection=true")
     connection.Open()
     ' Use the connection
 End Using
内容概要:本文探讨了在MATLAB/SimuLink环境中进行三相STATCOM(静态同步补偿器)无功补偿的技术方法及其仿真过程。首先介绍了STATCOM作为无功功率补偿装置的工作原理,即通过调节交流电压的幅值和相位来实现对无功功率的有效管理。接着详细描述了在MATLAB/SimuLink平台下构建三相STATCOM仿真模型的具体步骤,包括创建新模型、添加电源和负载、搭建主电路、加入控制模块以及完成整个电路的连接。然后阐述了如何通过对STATCOM输出电压和电流的精确调控达到无功补偿的目的,并展示了具体的仿真结果分析方法,如读取仿真数据、提取关键参数、绘制无功功率变化曲线等。最后指出,这种技术可以显著提升电力系统的稳定性与电能质量,展望了STATCOM在未来的发展潜力。 适合人群:电气工程专业学生、从事电力系统相关工作的技术人员、希望深入了解无功补偿技术的研究人员。 使用场景及目标:适用于想要掌握MATLAB/SimuLink软件操作技能的人群,特别是那些专注于电力电子领域的从业者;旨在帮助他们学会建立复杂的电力系统仿真模型,以便更好地理解STATCOM的工作机制,进而优化实际项目中的无功补偿方案。 其他说明:文中提供的实例代码可以帮助读者直观地了解如何从零开始构建一个完整的三相STATCOM仿真环境,并通过图形化的方式展示无功补偿的效果,便于进一步的学习与研究。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值