oracle 連接字串備份

來源:互聯網
上載者:User

標籤:des   style   color   使用   os   io   strong   for   

Oracle XE

    標準串連

        Oracle XE(或者"Oracle Database 10g Express Edition")是一個簡單免費發布的版本。

以下是文法格式:Driver=(Oracle in XEClient);dbq=111.21.31.99:1521/XE;Uid=myUsername;Pwd=myPassword;

ODBC

    新版本串連方式

以下是文法格式:Driver={Microsoft ODBC for Oracle};Server=myServerAddress;Uid=myUsername;Pwd=myPassword;

    老版本串連方式

以下是文法格式:Driver={Microsoft ODBC Driver for Oracle};ConnectString=OracleServer.world;Uid=myUsername;Pwd=myPassword;

OLE DB, OleDbConnection (.NET)

    標準安全連線

        此串連方式使用來自微軟的Provider。

以下是文法格式:Provider=msdaora;Data Source=MyOracleDB;User Id=myUsername;Password=myPassword;

    信任連接

以下是文法格式:Provider=msdaora;Data Source=MyOracleDB;Persist Security Info=False;Integrated Security=Yes;

    標準安全連線

       此串連方式使用來自Oracle的Provider。

以下是文法格式:Provider=OraOLEDB.Oracle;Data Source=MyOracleDB;User Id=myUsername;Password=myPassword;

          信任連接

以下是文法格式:Provider=OraOLEDB.Oracle;Data Source=MyOracleDB;OSAuthent=1;

 

以下是文法格式:Provider=OraOLEDB.Oracle;Data Source=(DESCRIPTION=(CID=GTU_APP)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=myHost)(PORT=myPort)))(CONNECT_DATA=(SID=MyOracleSID)(SERVER=DEDICATED)));User Id=myUsername;Password=myPassword;

Oracle.DataAccess.Client.OracleConnection

       標準串連

以下是文法格式:Data Source=TORCL;User Id=myUsername;Password=myPassword;

       帶integrated security的串連

以下是文法格式:Data Source=TORCL;Integrated Security=SSPI;

       帶 ODP.NET 不帶 tnsnames.ora的串連

以下是文法格式:Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=MyHost)(PORT=MyPort)))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=MyOracleSID)));User Id=myUsername;Password=myPassword;

OracleConnection, Oracle Data Provider, ODP.NET, System.Data.OracleClient.OracleConnection

        標準串連 

以下是文法格式:Data Source=MyOracleDB;Integrated Security=yes

       僅在Oracle8i release 3 或更高版本 

      指明使用者密與密碼的串連 

以下是文法格式:Data Source=MyOracleDB;User Id=myUsername;Password=myPassword;Integrated Security=no;

這是另一種串連方式不依賴你的DNS.You create a connection string based on the format used in the tnsnames.ora file without the need to actually have one of these files on the client pc. 

以下是文法格式:SERVER=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=MyHost)(PORT=MyPort))(CONNECT_DATA=(SERVICE_NAME=MyOracleSID)));uid=myUsername;pwd=myPassword;

  Some reported problems with the one above and Visual Studio. Use the next one if you‘ve encountered problems. 

以下是文法格式:Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=MyHost)(PORT=MyPort))(CONNECT_DATA=(SERVICE_NAME=MyOracleSID)));User Id=myUsername;Password=myPassword;

   使用串連池 

  串連池服務如果找不到一個完全符合連接字串的串連,他將會建立一個。如果能找到該串連,將會重新使用。 

以下是文法格式:Data Source=myOracleDB;User Id=myUsername;Password=myPassword;Min Pool Size=10;Connection Lifetime=120;Connection Timeout=60;Incr Pool Size=5;Decr Pool Size=2;

         Windows驗證 

以下是文法格式:Data Source=myOracleDB;User Id=/;

      特權串連

       使用SYSOPER的特權 

以下是文法格式:Data Source=myOracleDB;User Id=SYS;Password=SYS;DBA Privilege=SYSOPER;

          利用密碼終止函數

   當第一次開啟串連時,當開啟連結後,一個密碼到期錯誤被拋出,捕獲這個錯誤並執行OpenWithNewPassword命令列設定新密碼。 

以下是文法格式:Data Source=myOracleDB;User Id=myUsername;Password=myPassword;
oConn.OpenWithNewPassword(sTheNewPassword);

         代理驗證 

以下是文法格式:
Data Source=myOracleDB;User Id=myUsername;Password=myPassword;Proxy User Id=pUserId;Proxy Password=pPassword;

Core Labs OraDirect (.NET) 

       標準串連

以下是文法格式:User ID=myUsername;Password=myPassword;Host=ora;Pooling=true;Min Pool Size=0;Max Pool Size=100;Connection Lifetime=0;

Data Shape 

    MS Data Shape 

以下是文法格式:Provider=MSDataShape.1;Persist Security Info=False;Data Provider=MSDAORA;Data Source=orac;User Id=myUsername;Password=myPassword;
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.