OCCI ライブラリを使用して基本的なプログラムをコンパイルしようとしています。
コンパイルタスクはOKです。
g++ -I. -g -I/opt/oracle/product/10.2.0/db_1/precomp/public -I/opt/oracle/product/10.2.0/db_1/rdbms/public -I/opt/oracle/product/10.2.0/db_1/rdbms/demo -I/opt/oracle/product/10.2.0/db_1/plsql/public -I/opt/oracle/product/10.2.0/db_1/network/public -DMAX_SEND_SIZE=2000 -c -o test.o test.cpp
出力は OK で、test.o が生成されます。しかし、オブジェクトファイルをリンクしたい場合は、次のコマンドで、
g++ -L/opt/oracle/product/10.2.0/db_1/lib/ -lclntsh -locci -o test test.o
リンク タスクは失敗し、出力は次のようになります。
test.o: In function `main':
/home/xxx/occi/test.cpp:128: undefined reference to `oracle::occi::Environment::createEnvironment(oracle::occi::Environment::Mode, void*, void* (*)(void*, unsigned int), void* (*)(void*, void*, unsigned int), void (*)(void*, void*))'
/home/xxx/occi/test.cpp:170: undefined reference to `oracle::occi::Environment::terminateEnvironment(oracle::occi::Environment*)'
/home/xxx/occi/test.cpp:158: undefined reference to `oracle::occi::SQLException::~SQLException()'
/home/xxx/occi/test.cpp:158: undefined reference to `oracle::occi::SQLException::SQLException(oracle::occi::SQLException const&)'
/home/xxx/occi/test.cpp:163: undefined reference to `oracle::occi::SQLException::what() const'
/home/xxx/occi/test.cpp:158: undefined reference to `oracle::occi::SQLException::~SQLException()'
test.o:(.gcc_except_table+0xe0): undefined reference to `typeinfo for oracle::occi::SQLException'
collect2: ld returned 1 exit status
私の環境の履歴書:
- Ubuntu リナックス 11.04
- gcc バージョン 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3)
- ORACLE_HOME = /opt/oracle/product/10.2.0/db_1
- LD_LIBRARY_PATH = /opt/oracle/product/10.2.0/db_1/lib
- オラクルのバージョン: 10.2.0
LinuxでOCCIを使用してOracleへの接続を作成する必要があり、Pro*Cを使用したくありません。