今天在看David Sceppa的《ADO.NET 技术内幕》,里面对.net连接字符串的描述很简单,让人一看就懂,一看能理解:
连接字符串是什么?
连接字符串是由一系列用分号隔开的“name-value”组合:
strConn=”Setting1=Value1;Setting2=Value2;……”
其中的名称-值,取决于要连接什么类型的数据库,以及采用什么技术,说明了连接的细节。
SQLClient.net数据提供程序在连接到数据库时极其灵活,提供了多种用以生成连接字符串的方式。可以使用新的关键字,例如“DataSource”和“Initial Catalog”,也可以使用旧的术语,例如“Server”和“Database”。下面是连接字符串的两个简单例子,用于连接到SQL Server数据库:
- 连接到SQL Server的本例默认实例
strConn=”Data Source=.;Initial Catalog=Northwind;Integrated Security=true”
- 连接到SQL Server的命名实例
strConn=”Data Source=.\SQLExpress;Initial Catalog=Northwind;Integrated Security=true”
如果用旧的术语,对应的就是
- strConn=”Server=.;Database=Northwind;Trusted_Connection=true”
- strConn=”Server=.\SQLExpress;Database=Northwind;Trusted_Connection=true”
如果用指定的用户名和密码连接,那么可以写成
- strConn=”Data Source=.\SQLExpress;Initial Catalog=Northwind;User ID=MyUserID;Password=MyPassword”
- strConn=”Data Source=.\SQLExpress;Initial Catalog=Northwind;UID=MyUID;PWD=MyPWD”
旧的术语包括了:“Server”、“Database”“Trusted_Connection”、“UID”和“PWD”;