Oracle数据库连接中Provider=.1与Provider=MSDAORA什么区别

时间:2024-11-11 19:57:23

连接Oracle数据库

摘自:/gyming/article/details/17143153

连接字符串:
连接驱动
    Oracle公司提供的OleDB驱动,Provider需要根据实际情况修改,支持32bit与64bit,需要安装Oracle Data Provider for OLE DB.
    连接字符串:
    connectionString="provider=;Persist Security Info=False;User ID=UserName;Data Source=DataBase;Extended Properties='';Password=Password"
    或
    connectionString="provider=.1;Persist Security Info=False;User ID=UserName;Data Source=DataBase;Extended Properties='';Password=Password"

连接驱动MSDAORA
    Microsoft公司提供的OleDB驱动,Provider需要根据实际情况修改,只支持32bit.
    连接字符串:
    connectionString="Provider=MSDAORA;Data Source=dataSource;User Id=userid;Password=password;"
    或
    connectionString="Provider=MSDAORA.1;Data Source=dataSource;User Id=userid;Password=password;"

连接
    Microsoft公司提供,支持32bit与64bit,已建议作废.
    连接字符串:
    connectionString="Server=tnsnames;User Id=userid;Password=password;" providerName=""


对于各种数据库的连接方式,可参考

 

连接示例1:

[csharp]  view plain copy
  1. public static bool TestDB()  
  2.  {  
  3.      string connString = "Provider=MSDAORA;Data Source=dataSource;User Id=userid;Password=password;";  
  4.      try  
  5.      {  
  6.          DbConnection conn = new (connString);  
  7.          try  
  8.          {  
  9.              ();  
  10.              ();  
  11.              ("连接正常""提示信息", , );  
  12.              return true;  
  13.          }  
  14.          catch (Exception e)  
  15.          {  
  16.              (,  + , , );  
  17.              return false;  
  18.          }  
  19.          finally  
  20.          {  
  21.              ();  
  22.          }  
  23.      }  
  24.      catch (Exception e)  
  25.      {  
  26.          (,  + , , );  
  27.          return false;  
  28.      }  
  29.  }  


 

连接示例2:

[csharp]  view plain copy
  1. public static bool TestDB()  
  2.  {  
  3.      string connString = "Provider=MSDAORA;Data Source=dataSource;User Id=userid;Password=password;";  
  4.      try  
  5.      {  
  6.          using (DbConnection conn = new (connString))  
  7.          {  
  8.              ();  
  9.              ();  
  10.              ("连接正常""提示信息", , );  
  11.              return true;  
  12.          }  
  13.      }  
  14.      catch (Exception e)  
  15.      {  
  16.          (,  + , , );  
  17.          return false;  
  18.      }  
  19.  }