Oracle 的 OCI 库C++的封装 - EpOraLibrary
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();
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!