Oracle 的 OCI 库C++的封装 - EpOraLibrary
jopen
12年前
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();