一:安装配置
安装配置,参照http://www.cnblogs.com/zhangyongli2011/archive/2012/04/04/2431953.html
二:编程实践
访问oracle采用第三方库OTL。OTL三开源且跨平台访问ORACLE接口。封装了底层到OCI库。安装好oracle后,编程需要引用到头文件在目录$ORACLE_HOME/rdbms/public中,需要引用到库在$ORACLE_HOME/lib 。在linux下,oci库的名称是libociei.so,并不是liboci.so!这一点一定要切忌!
下面是测试程序:
#include <iostream>
#include <stdio.h>
using namespace std;
#define OTL_ORA10G_R2 // Compile OTL 4/OCI8
#include <otlv4.h> // include the OTL 4 header file
otl_connect _otlcon; // connect object
int main()
{
otl_connect::otl_initialize();
_otlcon.rlogon("zxd/zxd@111"/*getConnStr(eORA).c_str()*/);
cout<<"connect to oracle ok!"<<endl;
int port = -1;
otl_stream o(50,"SELECT HOST_CFG_ID FROM DMS_HOSTS_CFG",_otlcon);
while(!o.eof())
{
o>>port;
cout<<port<<endl;
}
return 0;
}
编译命令:
[yleesun@centos test]$ g++ -I$OTL_ROOT -I$OCI_ROOT/include -L$OCI_ROOT -l ociei -o otl otl.cpp
运行:
[yleesun@centos test]$ ./otl
connect to oracle ok!
1
2
3
5
6
10
201
10101
10102
三:卸载
运行:$ORACLE_HOME/deinstall/deinstall
安装配置,参照http://www.cnblogs.com/zhangyongli2011/archive/2012/04/04/2431953.html
二:编程实践
访问oracle采用第三方库OTL。OTL三开源且跨平台访问ORACLE接口。封装了底层到OCI库。安装好oracle后,编程需要引用到头文件在目录$ORACLE_HOME/rdbms/public中,需要引用到库在$ORACLE_HOME/lib 。在linux下,oci库的名称是libociei.so,并不是liboci.so!这一点一定要切忌!
下面是测试程序:
#include <iostream>
#include <stdio.h>
using namespace std;
#define OTL_ORA10G_R2 // Compile OTL 4/OCI8
#include <otlv4.h> // include the OTL 4 header file
otl_connect _otlcon; // connect object
int main()
{
otl_connect::otl_initialize();
_otlcon.rlogon("zxd/zxd@111"/*getConnStr(eORA).c_str()*/);
cout<<"connect to oracle ok!"<<endl;
int port = -1;
otl_stream o(50,"SELECT HOST_CFG_ID FROM DMS_HOSTS_CFG",_otlcon);
while(!o.eof())
{
o>>port;
cout<<port<<endl;
}
return 0;
}
编译命令:
[yleesun@centos test]$ g++ -I$OTL_ROOT -I$OCI_ROOT/include -L$OCI_ROOT -l ociei -o otl otl.cpp
运行:
[yleesun@centos test]$ ./otl
connect to oracle ok!
1
2
3
5
6
10
201
10101
10102
三:卸载
运行:$ORACLE_HOME/deinstall/deinstall