当前位置:首页 > 网络编程 > WEB编程 > ASP.net > .NET中各种数据库连接大全

.NET中各种数据库连接大全

点击次数:15 次 发布日期:2008-11-26 23:34:20 作者:源代码网
源代码网推荐 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;"
源代码网推荐
源代码网推荐 OLEDB, 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 serverNameinstanceName 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;User ID=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;User Id=sa;Password=asdasd;"
源代码网推荐
源代码网推荐 Trusted Connection:
源代码网推荐 "Data Source=Aron1;Initial Catalog=pubs;Integrated Security=SSPI;" (use serverNameinstanceName 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;User ID=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();
源代码网推荐
源代码网推荐 VB.NET:
源代码网推荐 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;User ID=sa;Password=asdasd;"
源代码网推荐
源代码网推荐 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;User ID=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 ADO.NET SqlConnection object. Most of the properties are also used in ADO. All properties and des criptions is from msdn.
源代码网推荐
源代码网推荐 NameDefaultDes criptionApplication 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 pool.Network 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.  Access  ODBC
源代码网推荐
源代码网推荐 Standard Security:
源代码网推荐 "Driver={Microsoft Access Driver (*.mdb)};Dbq=somepathmydb.mdb;Uid=Admin;Pwd=asdasd;"
源代码网推荐
源代码网推荐 Workgroup:
源代码网推荐 "Driver={Microsoft Access Driver (*.mdb)};Dbq=somepathmydb.mdb;SystemDB=somepathmydb.mdw;","admin", ""
源代码网推荐
源代码网推荐 OLEDB, OleDbConnection (.NET)
源代码网推荐
源代码网推荐 Standard security:
源代码网推荐 "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=somepathmydb.mdb;User Id=admin;Password=asdasd;"
源代码网推荐
源代码网推荐 Workgroup (system database):
源代码网推荐 "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=somepathmydb.mdb;Jet OLEDB:System Database=system.mdw;","admin", ""
源代码网推荐
源代码网推荐 With password:
源代码网推荐 "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=somepathmydb.mdb;Jet OLEDB:Database Password=MyDbPassword;","admin", ""
源代码网推荐
源代码网推荐 Oracle  ODBC
源代码网推荐
源代码网推荐 New version:
源代码网推荐 "Driver={Microsoft ODBC for Oracle};Server=OracleServer.world;Uid=Username;Pwd=asdasd;"
源代码网推荐
源代码网推荐 Old version:
源代码网推荐 "Driver={Microsoft ODBC Driver for Oracle};ConnectString=OracleServer.world;Uid=myUsername;Pwd=myPassword;"
源代码网推荐
源代码网推荐 OLEDB, OleDbConnection (.NET)
源代码网推荐
源代码网推荐 Standard security:
源代码网推荐 "Provider=msdaora;Data Source=MyOracleDB;User Id=UserName;Password=asdasd;" This one"s from Microsoft, the following are from Oracle Standard Security:
源代码网推荐 "Provider=OraOLEDB.Oracle;Data Source=MyOracleDB;User Id=Username;Password=asdasd;"
源代码网推荐
源代码网推荐 Trusted Connection:
源代码网推荐 "Provider=OraOLEDB.Oracle;Data Source=MyOracleDB;OSAuthent=1;"
源代码网推荐
源代码网推荐 OracleConnection (.NET)
源代码网推荐
源代码网推荐 Standard:
源代码网推荐 "Data Source=Oracle8i;Integrated Security=yes"; This one works only with Oracle 8i release 3 or later Declare the OracleConnection:
源代码网推荐 C#:
源代码网推荐 using System.Data.OracleClient;
源代码网推荐 OracleConnection oOracleConn = new OracleConnection();
源代码网推荐 oOracleConn.ConnectionString = "my connectionstring";
源代码网推荐 oOracleConn.Open();
源代码网推荐
源代码网推荐 VB.NET:
源代码网推荐 Imports System.Data.OracleClient
源代码网推荐 Dim oOracleConn As OracleConnection = New OracleConnection()
源代码网推荐 oOracleConn.ConnectionString = "my connectionstring"
源代码网推荐 oOracleConn.Open()
源代码网推荐
源代码网推荐 Data Shape
源代码网推荐
源代码网推荐 MS Data Shape:
源代码网推荐 "Provider=MSDataShape.1;Persist Security Info=False;Data Provider=MSDAORA;Data Source=orac;user id=username;password=mypw"
源代码网推荐
源代码网推荐 MySQL  ODBC
源代码网推荐
源代码网推荐 Local database:
源代码网推荐 "Driver={mySQL};Server=mySrvName;Option=16834;Database=mydatabase;"
源代码网推荐
源代码网推荐 Remote database:
源代码网推荐 "Driver={mySQL};Server=data.domain.com;Port=3306;Option=131072;Stmt=;Database=my-database;Uid=username;Pwd=password;"
源代码网推荐
源代码网推荐 OLEDB, OleDbConnection (.NET)
源代码网推荐
源代码网推荐 Standard:
源代码网推荐 "Provider=MySQLProv;Data Source=mydb;User Id=UserName;Password=asdasd;"  MySqlConnection (.NET)
源代码网推荐
源代码网推荐 EID:
源代码网推荐 "Data Source=server;Database=mydb;User ID=username;Password=pwd;Command Logging=false" This one is used with eInfoDesigns dbProvider, an add-on to .NET Declare the MySqlConnection:
源代码网推荐 C#:
源代码网推荐 using EID.MySqlClient;
源代码网推荐 MySqlConnection oMySqlConn = new MySqlConnection();
源代码网推荐 oMySqlConn.ConnectionString = "my connectionstring";
源代码网推荐 oMySqlConn.Open();
源代码网推荐
源代码网推荐 VB.NET:
源代码网推荐 Imports EID.MySqlClient
源代码网推荐 Dim oMySqlConn As MySqlConnection = New MySqlConnection()
源代码网推荐 oMySqlConn.ConnectionString = "my connectionstring"
源代码网推荐 oMySqlConn.Open()
源代码网推荐
源代码网推荐 IBM DB2  OLEDB, OleDbConnection (.NET) from ms
源代码网推荐
源代码网推荐 TCP/IP:
源代码网推荐 "Provider=DB2OLEDB;Network Transport Library=TCPIP;Network Address=XXX.XXX.XXX.XXX;Initial Catalog=MyCtlg;Package Collection=MyPkgCol;Default Schema=Schema;User ID=MyUser;Password=MyPW"
源代码网推荐
源代码网推荐 APPC:
源代码网推荐 "Provider=DB2OLEDB;APPC Local LU Alias=MyAlias;APPC Remote LU Alias=MyRemote;Initial Catalog=MyCtlg;Package Collection=MyPkgCol;Default Schema=Schema;User ID=MyUser;Password=MyPW"
源代码网推荐
源代码网推荐 Sybase  ODBC
源代码网推荐
源代码网推荐 Standard:
源代码网推荐 "Driver={SYBASE SYSTEM 11};Srvr=Aron1;Uid=username;Pwd=password;"
源代码网推荐
源代码网推荐 Intersolv 3.10:
源代码网推荐 "Driver={INTERSOLV 3.10 32-BIT Sybase};Srvr=Aron1;Uid=username;Pwd=password;"
源代码网推荐
源代码网推荐 Informix  ODBC
源代码网推荐
源代码网推荐 Informix 3.30:
源代码网推荐 "Dsn="";Driver={INFORMIX 3.30 32 BIT};Host=hostname;Server=myserver;Service=service-name;Protocol=olsoctcp;Database=mydb;UID=username;PWD=myPwd
源代码网推荐
源代码网推荐 Informix-CLI 2.5:
源代码网推荐 "Driver={Informix-CLI 2.5 (32 Bit)};Server=myserver;Database=mydb;Uid=username;Pwd=myPwd"
源代码网推荐
源代码网推荐 DSN  ODBC
源代码网推荐
源代码网推荐 DSN:
源代码网推荐 "DSN=myDsn;Uid=username;Pwd=;"
源代码网推荐
源代码网推荐 File DSN:
源代码网推荐 "FILEDSN=c:myData.dsn;Uid=username;Pwd=;"
源代码网推荐
源代码网推荐 Excel  ODBC
源代码网推荐
源代码网推荐 Standard:
源代码网推荐 "Driver={Microsoft Excel Driver (*.xls)};DriverId=790;Dbq=C:MyExcel.xls;DefaultDir=c:mypath;"
源代码网推荐
源代码网推荐 OLE DB
源代码网推荐
源代码网推荐 Standard:
源代码网推荐 "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:MyExcel.xls;Extended Properties=Excel 8.0;HDR=Yes;" "HDR=Yes;" indicates that the first row contains columnnames, not data DBF / FoxPro  ODBC
源代码网推荐
源代码网推荐 standard:
源代码网推荐 "Driver={Microsoft dBASE Driver (*.dbf)};DriverID=277;Dbq=c:mydbpath;"
源代码网推荐
源代码网推荐 OLEDB, OleDbConnection (.NET)
源代码网推荐
源代码网推荐 standard:
源代码网推荐 "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:folder;Extended Properties=dBASE IV;User ID=Admin;Password="
源代码网推荐
源代码网推荐 Pervasive  ODBC
源代码网推荐
源代码网推荐 Standard:
源代码网推荐 "Driver={Pervasive ODBC Client Interface};ServerName=srvname;dbq=@dbname"
源代码网推荐
源代码网推荐 UDL  UDL
源代码网推荐
源代码网推荐 UDL:
源代码网推荐 "File Name=c:myDataLink.udl;"
源代码网推荐

源代码网供稿.
网友评论 (0)
会员中心
网络编程
本站推荐
网络编程之精华