Oracle 的 OCI 庫C++的封裝 - EpOraLibrary

jopen 12年前發布 | 35K 次閱讀 Oracle 數據庫服務器

EpOraLibrary 是對 Oracle 的 OCI 庫進行輕量級封裝的 C++ 庫。

* Supports the most of operations that Oracle OCCI Library supports.
* No more linking problems, stated above.
* Supports full ASCII/Unicode development environment.
* Similar operation convention used as Oracle OCCI Library
  - People can be easily adapted to EpOralibrary.
* Easy installation 
  - No need to install any Oracle installation for the development.
  - See Installation Section below for the detail.

示例代碼:

// OracleServer Hostname : 11.222.33.44
epol::Connection conn (_T("11.222.33.44"), _T("LoginID"), _T("Password") );
...
conn.Close();

// Or

epol::Connection conn();
conn.Open(
_T("11.222.33.44"), _T("LoginID"), _T("Password") );
... 
conn.Close(); 

項目主頁:http://www.baiduhome.net/lib/view/home/1342483939760

 本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!