c# 連線oracle資料庫的時候,需要安裝oracle客戶端,這樣會比較麻煩,這裡提供一種連線方式(即第三方庫oracle.manageddataaccess.dll ),可以不用安裝oracle客戶端就可以進行連線。12
在工程中新增引用「oracle.manageddataaccess.dll」;
3引用命名空間「using oracle.manageddataaccess.client;」
4連線資料庫**如下:
public bool connect(string hostaddress, string servername, string uid, string pwd)
string connstring = "data source=(description=(address=(protocol=tcp)(host="+ hostaddress +")(port=1521))(connect_data=(service_name="+ servername +")));persist security info=true;user id="+ uid +";password="+ pwd +";";
oracleconnection conn = new oracleconnection(connstring);
conn.open();
if(conn.state==connectionstate.open)
conn.close();
return true;
else
return false;
end
C 連線oracle資料庫
using system.data.oracleclient 首先要引入上面這條語句,如果這條語句報錯,那應該是沒有引用oracleclient.dll,在專案上右鍵 新增引用,在.net選項卡中找到system.data.oracleclient,如果找不到,那就點 瀏覽 選項卡,找到c wind...
C 連線Oracle資料庫
public oracleconnection psrcoracon string psrcconn data source sourceservicename uid sourceusername pwd sourcepassword psrcoracon new oracleconnection...
C 連線oracle資料庫操作
1 匯入引用system.data.oracleclient.dll檔案 2 在頭部using system.data.oracleclient 通過dataset來讀取資料 建立和資料庫的連線 oracleconnection oracon new oracleconnection user id...