欢迎来到代码驿站!

当前位置:首页 >

数据连接串之sql server

时间:2021-04-06 10:02:20|栏目:|点击:
SQL Server Set your custom connection string values  
This is a compiled connection strings reference list on how to connect to SQL Server. 
ODBC 

Standard Security  

复制代码 代码如下:

Driver={SQL Server};Server=myServerAddress;Database=myDataBase;Uid=myUsername;Pwd=myPassword;  
 

Trusted connection  

复制代码 代码如下:

Driver={SQL Server};Server=myServerAddress;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};Server=myServerAddress;Database=myDataBase;  



OLE DB, OleDbConnection (.NET)   
Standard Security     
复制代码 代码如下:

Provider=sqloledb;Data Source=myServerAddress;Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword;  
 

Trusted connection  

复制代码 代码如下:

Provider=sqloledb;Data Source=myServerAddress;Initial Catalog=myDataBase;Integrated Security=SSPI;     
Use serverName\instanceName as Data Source to use a specific SQL Server instance. Please note that the multiple SQL Server instances feature is available only from SQL Server version 2000 and not in any previous versions.  

Prompt for username and password 
This one is a bit tricky. First set the connection object's Provider property to "sqloledb". Thereafter set the connection object's Prompt property to adPromptAlways. Then use the connection string to connect to the database.    
复制代码 代码如下:

oConn.Provider = "sqloledb" 
oConn.Properties("Prompt") = adPromptAlways 

Data Source=myServerAddress;Initial Catalog=myDataBase;  
 

Connect via an IP address  

复制代码 代码如下:

Provider=sqloledb;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.  
How to define which network protocol to use >> 

SqlConnection (.NET) 

Standard Security  

复制代码 代码如下:

Data Source=myServerAddress;Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword;  
 

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;   
 
Use serverName\instanceName as Data Source to use a specific SQL Server instance. Please note that the multiple SQL Server instances feature is available only from SQL Server version 2000 and not in any previous versions.  

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.  
How to define which network protocol to use >> 

Specifying packet size  

复制代码 代码如下:

Server=myServerAddress;Database=myDataBase;User ID=myUsername;Password=myPassword;Trusted_Connection=False;Packet Size=4096;  
 
By default, the Microsoft .NET Framework Data Provider for SQL Server sets the network packet size to 8192 bytes. This might however not be optimal, try to set this value to 4096 instead.  
The default value of 8192 might cause errors as well ("Failed to reserve contiguous memory"), check this out >> 

Data Shape 

MS Data Shape  

复制代码 代码如下:

Provider=MSDataShape;Data Provider=SQLOLEDB;Data Source=myServerAddress;Initial Catalog=myDataBase;User ID=myUsername;Password=myPassword;     

http://www.connectionstrings.com/?carrier=sqlserver

上一篇:PowerShell调用Web测试工具Selenium实例

栏    目:

下一篇:Powershell小技巧之通过EventLog查看近期电脑开机和关机时间

本文标题:数据连接串之sql server

本文地址:http://www.codeinn.net/misctech/95705.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有