oracle11gr2在linux上,从安装到编程实战

一:安装配置
安装配置,参照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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值