- 论坛徽章:
- 0
|
做过OCI程序的各位老哥,千万要帮帮忙
下面的应该挺清楚了吧,拜托这位大哥给瞧一瞧,执行结果不要管,关键是链接时不通过, 没有"OCIDirPathPrepare(dpctx, svchp_ctl, errhp_ctl);"这一句的话
就可以,但我急需使用Direct Path.
代码
####################
#include <sys/types.h>;
#include <sys/stat.h>;
#include <ctype.h>;
#include <fcntl.h>;
#include <assert.h>;
#include <stdio.h>;
#include <stdlib.h>;
#include <string.h>;
#include <oratypes.h>;
#include <oci.h>;
int main(void)
{
OCIDirPathCtx *dpctx;
OCISvcCtx *svchp_ctl;
OCIError *errhp_ctl;
OCIInitialize((ub4) OCI_DEFAULT, (dvoid *)0,
(dvoid * (*)(dvoid *, size_t)) 0,
(dvoid * (*)(dvoid *, dvoid *, size_t))0,
(void (*)(dvoid *, dvoid *)) 0);
OCIDirPathPrepare(dpctx, svchp_ctl, errhp_ctl);
return 0;
}
####################
g++ -c -I/export/home/opt/oracle/8.1.6/rdbms/demo -I/export/home/opt/oracle/8.1.6/rdbms/public -I/export/home/opt/oracle/8.1.6/plsql/public -I/export/home/opt/oracle/8.1.6/network/public test.cpp
g++ -g -o a.out test.o -L/export/home/opt/oracle/8.1.6/lib -L/export/home/opt/oracle/8.1.6/rdbms/lib -lclntsh -lclntsh
test.o: In function `main':
test.o(.text+0x2c): undefined reference to `OCIDirPathPrepare'
collect2: ld returned 1 exit status
make: *** [a.out] Error 1 |
|