ADO.net 中数据库连接方式

微软提供了以下四种数据库连接方式:
System.Data.OleDb.OleDbConnection
System.Data.SqlClient.SqlConnection
System.Data.Odbc.OdbcConnection
System.Data.OracleClient.OracleConnection
下面我们以范例的方式,来依次说明:

System.Data.SqlClient.SqlConnection
常用的一些连接字符串:

c# 代码
  1. SqlConnection conn    
  2. new SqlConnection("Server=(local);Integrated Security=SSPI;database=Pubs");   
  3.   
  4. SqlConnection conn    
  5. new SqlConnection("server=(local)\\NetSDK;database=pubs;Integrated Security=SSPI");   
  6.   
  7. SqlConnection conn = new SqlConnection(   
  8. "Data Source=localhost;Integrated Security=SSPI;Initial Catalog=Northwind;");   
  9.   
  10. SqlConnection conn = new SqlConnection(   
  11. " data source=(local);initial catalog=xr;integrated security=SSPI;  
  12. persist security info=False;workstation id=XURUI;packet size=4096; ");   
  13.   
  14. SqlConnection myConn  = new    
  15. System.Data.SqlClient.SqlConnection("Persist Security Info=False;Integrated   
  16. Security=SSPI;database=northwind;server=mySQLServer");   
  17.   
  18. SqlConnection conn = new SqlConnection(    
  19. " uid=sa;pwd=passwords;initial catalog=pubs;data source=127.0.0.1;Connect Timeout=900");   
  20.   

 

System.Data.OleDb.OleDbConnection
常用的一些连接字符串:

c# 代码
  1. OleDbConnection conn = new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\MyWeb\81\05\GrocerToGo.mdb");   
  2.   
  3. OleDbConnection conn = new OleDbConnection(   
  4. @"Provider=Microsoft.Jet.OLEDB.4.0;Password=;  
  5. User ID=Admin;Data Source=grocertogo.mdb;");   
  6.   
  7. OleDbConnection conn = new OleDbConnection(   
  8. "Provider=MSDAORA; Data Source=ORACLE8i7;Persist Security Info=False;Integrated Security=yes");   
  9.   
  10. OleDbConnection conn = new OleDbConnection(   
  11. "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=c:\bin\LocalAccess40.mdb");   
  12.   
  13. OleDbConnection conn = new OleDbConnection(   
  14. "Provider=SQLOLEDB;Data Source=MySQLServer;Integrated Security=SSPI");   
  15.   

 

System.Data.OracleClient.OracleConnection
常用的一些连接字符串:

c# 代码
  1. OracleConnection myConn = new System.Data.OracleClient.OracleConnection(   
  2. "Data Source=Oracle8i;Integrated Security=yes");   

 

System.Data.Odbc.OdbcConnection
常用的一些连接字符串:

c# 代码
  1. OdbcConnection conn = new OdbcConnection(   
  2. "Driver={SQL Server};Server=MyServer;Trusted_Connection=yes;Database=Northwind;");   
  3.   
  4. OdbcConnection conn = new OdbcConnection(   
  5. "Driver={Microsoft ODBC for Oracle};Server=ORACLE8i7;  
  6. Persist Security Info=False;Trusted_Connection=yes");   
  7.   
  8. OdbcConnection conn = new OdbcConnection(   
  9. "Driver={Microsoft Access Driver (*.mdb)};DBQ=c:\bin\nwind.mdb");   
  10.   
  11. OdbcConnection conn = new OdbcConnection(   
  12. "Driver={Microsoft Excel Driver (*.xls)};DBQ=c:\bin\book1.xls");   
  13.   
  14.   
  15. OdbcConnection conn = new OdbcConnection(   
  16. "Driver={Microsoft Text Driver (*.txt; *.csv)};DBQ=c:\bin");   
  17.   
  18. OdbcConnection conn = new OdbcConnection("DSN=dsnname");   
  19.   

 

其他厂商提供的数据库连接:

c# 代码
  1. DB2Connection myConn = new IBM.Data.DB2.DB2Connection(   
  2. "DATABASE = SAMPLE;UID=; PWD=;");   
  3.   
  4. DB2Connection myConn = new IBM.Data.DB2.DB2Connection("DATABASE = SAMPLE");   
  5.   
  6.   
  7. BdpConnection myConn = new Borland.Data.Provider.BdpConnection("assembly=Borl  
  8. and.Data.Mssql,Version=1.1.0.0,Culture=neutral,PublicKeyToken=91d62ebb5b0d1b1b;ve  
  9. ndorclient=sqloledb.dll;osauthentication=False;database=;usernam  
  10. e=;hostname=;password=;provider=MSSQL");   
  11.   
  12. BdpConnection myConn = new Borland.Data.Provider.BdpConnection("assembly=Borl  
  13. and.Data.Db2,Version=1.1.0.0,Culture=neutral,PublicKeyToken=91d62ebb5b0d1b1b;ve  
  14. ndorclient=db2cli.dll;database=;username=;  
  15. password=;provider=DB2");   
  16.   

 

Connection Pooling


在SQL Server、OLE DB和.NET框架结构中的Data Provider中,都提供了隐式的连接池连接支持。你可以在ConnectionString中指定不同的参数值控制连接池的行为。比如下面的例子使OLE DB的连接池无效并自动地进行事务处理:
Provider=SQLOLEDB;OLE DB Services=-4;Data Source=localhost;Integrated Security=SSPI;
在SQL Server.NET Data Provider中提供了以下参数设置控制连接池的行为:Connection Lifttime、Connection Reset、Enlist、Max Pool Size、Min Pool Size和Pooling。

你可能感兴趣的:(数据结构,.net,SQL Server,db2,Security)