| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1813 人关注过本帖
标题:数据库连接字符串大全
只看楼主 加入收藏
smltq
Rank: 6Rank: 6
等 级:侠之大者
威 望:8
帖 子:566
专家分:400
注 册:2008-1-21
收藏
 问题点数:0 回复次数:10 
数据库连接字符串大全
//今天看到一位朋友老说数据库连接不了,受到启发。网上转载的数据库连接字符串大全
SQL Server
ODBC


Standard Security:
"Driver={SQL Server};Server=Aron1;Database=pubs;Uid=sa;Pwd=asdasd;"



Trusted connection:
"Driver={SQL Server};Server=Aron1;Database=pubs;Trusted_Connection=yes;"



Prompt for username and password:
oConn.Properties("Prompt") = adPromptAlways
oConn.Open "Driver={SQL Server};Server=Aron1;DataBase=pubs;"



OLE DB, OleDbConnection (.NET)


Standard Security:
"Provider=sqloledb;Data Source=Aron1;Initial Catalog=pubs;User Id=sa;Password=asdasd;"



Trusted Connection:
"Provider=sqloledb;Data Source=Aron1;Initial Catalog=pubs;Integrated Security=SSPI;" (use serverName\instanceName as Data Source to use an specifik SQLServer instance, only SQLServer2000)

Prompt for username and password:
oConn.Provider = "sqloledb"
oConn.Properties("Prompt") = adPromptAlways
oConn.Open "Data Source=Aron1;Initial Catalog=pubs;"



Connect via an IP address:
"Provider=sqloledb;Data Source=190.190.200.100,1433;Network Library=DBMSSOCN;Initial Catalog= pubs;UserID=sa;Password=asdasd;" (DBMSSOCN=TCP/IP instead of Named Pipes, at the end of the Data Source is the port to use (1433 is the default))

SqlConnection (.NET)


Standard Security:
"Data Source=Aron1;Initial Catalog= pubs;UserId=sa;Password=asdasd;"
   - or -
"Server=Aron1;Database=pubs;UserID=sa;Password=asdasd;Trusted_Connection=False"
   (booth connection strings produces the same result)




Trusted Connection:
"Data Source=Aron1;Initial Catalog=pubs;Integrated Security=SSPI;"
   - or -< BR>"Server=Aron1;Database=pubs;Trusted_Connection=True;"
   (booth connection strings produces the same result)
(use serverName\instanceName as Data Source to use an specifik SQLServer instance, only SQLServer2000)

Connect via an IP address:
"Data Source=190.190.200.100,1433;Network Library=DBMSSOCN;Initial Catalog= pubs;UserID=sa;Password=asdasd;" (DBMSSOCN=TCP/IP instead of Named Pipes, at the end of the Data Source is the port to use (1433 is the default))

Declare the SqlConnection:
C#:
using System.Data.SqlClient;
SqlConnection oSQLConn = new SqlConnection();
oSQLConn.ConnectionString="my connectionstring";
oSQLConn.Open();



Imports System.Data.SqlClient
Dim oSQLConn As SqlConnection = New SqlConnection()
oSQLConn.ConnectionString="my connectionstring"
oSQLConn.Open()


Data Shape


MS Data Shape
"Provider=MSDataShape;Data Provider=SQLOLEDB;Data Source=Aron1;Initial Catalog= pubs;UserID=sa;Password=asdasd;" Want to learn data shaping? Check out 4GuyfFromRolla's great article about Data Shaping >>
Read more


How to define wich network protocol to use


Example:
"Provider=sqloledb;Data Source=190.190.200.100,1433;Network Library=DBMSSOCN;Initial Catalog= pubs;UserID=sa;Password=asdasd;"

NameNetwork librarydbnmpntwWin32 Named PipesdbmssocnWin32 Winsock TCP/IPdbmsspxnWin32 SPX/IPXdbmsvinnWin32 Banyan VinesdbmsrpcnWin32 Multi-Protocol (Windows RPC)

Important note!
When connecting through the SQLOLEDB provider use the syntax Network Library=dbmssocn
and when connecting through MSDASQL provider use the syntax Network=dbmssocn



All SqlConnection connectionstring properties


This table shows all connectionstring properties for the SqlConnection object. Most of the properties are also used in ADO. All properties and descriptions is from msdn.

NameDefaultDescriptionApplication Name The name of the application, or '.Net SqlClient Data Provider' if no application name is provided.AttachDBFilename
-or-
extended properties
-or-
Initial File Name The name of the primary file, including the full path name, of an attachable database. The database name must be specified with the keyword 'database'.Connect Timeout
-or-
Connection Timeout15The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error.Connection Lifetime0When a connection is returned to the pool, its creation time is compared with the current time, and the connection is destroyed if that time span (in seconds) exceeds the value specified by connection lifetime. Useful in clustered configurations to force load balancing between a running server and a server just brought on-line.Connection Reset'true'Determines whether the database connection is reset when being removed from the pool. Setting to 'false' avoids making an additional server round-trip when obtaining a connection, but the programmer must be aware that the connection state is not being reset.Current Language The SQL Server Language record name.Data Source
-or-
Server
-or-
Address
-or-
Addr
-or-
Network Address The name or network address of the instance of SQL Server to which to connect.Enlist'true'When true, the pooler automatically enlists the connection in the creation thread's current transaction context.Initial Catalog
-or-
Database The name of the database.Integrated Security
-or-
Trusted_Connection'false'Whether the connection is to be a secure connection or not. Recognized values are 'true', 'false', and 'sspi', which is equivalent to 'true'.Max Pool Size100The maximum number of connections allowed in the pool.Min Pool Size0The minimum number of connections allowed in the Library
-or-
Net'dbmssocn'The network library used to establish a connection to an instance of SQL Server. Supported values include dbnmpntw (Named Pipes), dbmsrpcn (Multiprotocol), dbmsadsn (Apple Talk), dbmsgnet (VIA), dbmsipcn (Shared Memory) and dbmsspxn (IPX/SPX), and dbmssocn (TCP/IP).
The corresponding network DLL must be installed on the system to which you connect. If you do not specify a network and you use a local server (for example, "." or "(local)"), shared memory is used.Packet Size8192Size in bytes of the network packets used to communicate with an instance of SQL Server.Password
-or-
Pwd The password for the SQL Server account logging on.Persist Security Info'false'When set to 'false', security-sensitive information, such as the password, is not returned as part of the connection if the connection is open or has ever been in an open state. Resetting the connection string resets all connection string values including the password.Pooling'true'When true, the SQLConnection object is drawn from the appropriate pool, or if necessary, is created and added to the appropriate pool.User ID The SQL Server login account.Workstation IDthe local computer nameThe name of the workstation connecting to SQL Server.

Note
Use ; to separate each property.
If a name occurs more than once, the value from the last one in the connectionstring will be used.
If you are building your connectionstring in your app using values from user input fields, make sure the user can't change the connectionstring by inserting an additional property with another value within the user value.
搜索更多相关主题的帖子: 数据库 大全 字符 
2008-11-26 07:00
skyzoneskyzone
Rank: 1
等 级:新手上路
威 望:1
帖 子:137
专家分:0
注 册:2008-10-6
收藏
得分:0 
最好是带中文解释的,因为我们毕竟大多数人是汉语比较精通。
不过,叫大全有点不恰当吧。它也就是针对sql的一些参数进行了一些解释。

读万卷书莫如行万里路,行路在问题答题之中。
2008-11-26 07:42
smltq
Rank: 6Rank: 6
等 级:侠之大者
威 望:8
帖 子:566
专家分:400
注 册:2008-1-21
收藏
得分:0 
我只会SQL和ACCESS 其它的不会哟

简单的生活
2008-11-26 12:27
wldouyan
Rank: 1
等 级:新手上路
帖 子:60
专家分:0
注 册:2008-11-26
收藏
得分:0 
学习了,谢谢
2008-11-26 18:17
smltq
Rank: 6Rank: 6
等 级:侠之大者
威 望:8
帖 子:566
专家分:400
注 册:2008-1-21
收藏
得分:0 
版主也不加精下,呵呵

简单的生活
2008-11-26 20:14
小仙
Rank: 7Rank: 7Rank: 7
来 自:光之谷
等 级:贵宾
威 望:39
帖 子:1812
专家分:1
注 册:2008-8-8
收藏
得分:0 
加精的条件是必须原创。不过帖子确实是好帖,可惜现在论坛在改版,不能给予高亮显示等奖励措施。


仁者乐膳,智者乐睡。我都爱~
2008-11-26 20:33
chj6818112
Rank: 1
等 级:新手上路
帖 子:49
专家分:0
注 册:2008-11-25
收藏
得分:0 
不能具体说清楚下啊!
2008-11-26 22:01
examplees
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2008-8-29
收藏
得分:0 
谢谢  分享  感谢
2008-11-28 11:17
zzfzzf
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2008-12-2
收藏
得分:0 
2008-12-02 18:10
huangwei89
Rank: 1
等 级:新手上路
帖 子:127
专家分:0
注 册:2008-10-17
收藏
得分:0 
谢谢,不过有注释可能会更好些
2008-12-02 18:56
快速回复:数据库连接字符串大全
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017448 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved