c 對Oracle資料庫操作

2021-04-20 00:21:29 字數 1469 閱讀 8042

using system;

using system.data;

using system.data.oracleclient;

namespace web

#region 插入和更新資料庫

public void execsql(string strsql)

catch (exception e)

finally

}#endregion

#region getsqldatareader

///

/// 得到sqldatareader控制代碼

///

///

public oracledatareader getoracledatareader(string strsql)

catch (system.data.oracleclient.oracleexception e)

finally

}#endregion

#region getsqlobject

///

/// 得到getsqlobject控制代碼

///

///

public object getoracleobject(string strsql)

else

}catch (system.data.oracleclient.oracleexception e)

finally

}#endregion

///

/// getdataset資料集

///

///

///

///public dataset getdataset(string strsql, string strtable)

catch (system.data.oracleclient.oracleexception e)

finally

}///

///用儲存過程和陣列引數

///

///

///

#region 用儲存過程和陣列引數

public void insertinfo(string procname, params oracleparameter sps)

cmd.executenonquery();

conn.close();

}catch (system.data.oracleclient.oracleexception e)

finally

}#endregion

#region 新增使用者,更新使用者,刪除使用者

//刪除使用者

public bool deluserinfo(string userid)

catch (system.data.oracleclient.oracleexception e)

finally

return true;

}#endregion

linux對oracle資料庫操作

1.匯入資料庫 imp hbdw hbdw hbdw 35 41 file home oracle hbdw.dmp full y 使用者名稱 密碼 沒有 例項名 2.匯出資料庫 a.切換到oracle使用者 su oracle 注意 前後的空格b.以管理員身份登陸 sqlplus as sysdb...

C 操作ORACLE資料庫

using system using system.data using system.configuration using system.linq using system.web using system.web.security using system.web.ui using syste...

python對oracle資料庫的操作

在e programfile instantclient下建立檔案tnsnames.ora,將下面內容貼上進該檔案 description address list address protocol tcp host port 1521 connect data server dedicated s...