Skip to content Skip to main navigation Skip to footer

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

    在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

来源:https://linux.cn/article-429-1.html

0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.