- 论坛徽章:
- 0
|
本帖最后由 zhanhorse 于 2013-07-29 16:52 编辑
验证C++连接ORACLE数据库的时候报错,不知道什么原因!
服务器:
HP-UX B.11.31 U ia64 (ta)
$ cat Makefile
includepath=${ORACLE_HOME}/rdbms/public
libpath=${ORACLE_HOME} b
libfile=-L ${libpath} -L libocci -L libclntsh
incfile=-I ${includepath}
occiselect:select.cpp
aCC -g -o occiselect select.cpp ${libfile} ${incfile}
clean:
rm occiselect
$ cat select.cpp
#include <iostream>
#include <occi.h>
using namespace std;
using namespace oracle: cci;
main()
{
Environment *env=Environment::createEnvironment();//create succ
string name = "name";
string pwd = "pwd";
string dbname = "DBDEMO";
try
{
Connection *conn=env->createConnection(name,pwd,dbname);//
cout<<"conn succ!"<<endl;
env->terminateConnection(conn);//
}
catch(SQLException e)
{
cout<<e.what()<<endl;//
}
Environment::terminateEnvironment(env);//
cout<<"end!"<<endl;
}
$
$ make occiselect
aCC -g -o occiselect select.cpp -L /home/oracle/product/10.2.0 b -L libocci -L libclntsh -I /home/oracle/product/10.2.0/rdbms/public
"/home/oracle/product/10.2.0/rdbms/public/occiData.h", line 503: warning #2815-D:
type qualifier on return type is meaningless
const int sign() const ;
^
ld: Unsatisfied symbol "oracle: cci::Environment::createEnvironment(oracle: cci::Environment::Mode,void*,void* (*)(void*,unsigned long),void* (*)(void*,void*,unsigned long),void (*)(void*,void*))" in file select.o
ld: Unsatisfied symbol "oracle: cci::SQLException::SQLException(oracle: cci::SQLException const& (complete)" in file select.o
ld: Unsatisfied symbol "oracle: cci::SQLException::what() const" in file select.o
ld: Unsatisfied symbol "oracle: cci::SQLException::~SQLException()(complete)" in file select.o
ld: Unsatisfied symbol "oracle: cci::Environment::terminateEnvironment(oracle: cci::Environment*)" in file select.o
ld: Unsatisfied symbol "type info of oracle: cci::SQLException" in file select.o
6 errors.
正确的Makefile:
$ cat Makefile
includepath=${ORACLE_HOME}/rdbms/public
libpath=${ORACLE_HOME}/lib
libfile=-L ${libpath} -locci -lclntsh
incfile=-I ${includepath}
occiselect:select.cpp
aCC +DD64 -g -o occiselect select.cpp ${libfile} ${incfile}
clean:
rm occiselect
$ |
|