❏ 站外平台:

在redhat enterprise 6上使用Oracle11g的occi比windows简单

| 2012-03-31 08:42      

    在redhat enterprise 6 上安装了Oracle11g后,使用occi编程比windows里使用visual studio.net 里使用occi简单得多

1)在oracle官网下载instantclient_11_2 把那个sdk也下载了解压到这个文件夹中

2)进入instantclient_11_2 进行:ln -sf libclntsh.so.11.1 libclntsh.so    ln -sf libocci.so.11.1 libocci.so

3) 把$ORACLE_HOME/network/admin/下的文件拷贝到instantclient_11_2中

4)配置环境变量,编辑.bash_profile加上

export ORACLE_HOME=$ORACLE_HOME:/instantclient_11_2

export LD_LIBRARY_PATH=/instantclient_11_2:$LD_LIBRARY_PATH

export  TNS_ADMIN=/instantclient_11_2

  在编译你的occi程序时:

g++ -I /instantclient_11_2/sdk/include -L /instantclient_11_2 yourocci.cxx -locci -lclntsh -o yourocci



最新评论


返回顶部

分享到微信

打开微信,点击顶部的“╋”,
使用“扫一扫”将网页分享至微信。