- 论坛徽章:
- 0
|
程序:test.cpp
#include <iostream>;
#include <occi.h>;
using namespace std;
int main(void)
{
return 0;
}
比Hello World!还简单的代码,包含了ORACLE C++编程接口的头文件occi.h,
xlC -g -o test test.cpp -I$ORACLE_HOME/rdbms/demo -I$ORACLE_HOME/rdbms/public -I$ORACLE_HOME/plsql/public -I$ORACLE_HOME/network/public
初学OCCI,想自己学着写点东西,但就是编译的时候出现了下面问题
"/u01/app/oracle/product/9.2.0/rdbms/demo/occiCommon.h", line 356.25: 1540-0152 (W) A template dependent name that is a type must be qualified with "typename".
"/u01/app/oracle/product/9.2.0/rdbms/demo/occiCommon.h", line 362.3: 1540-0152 (W) A template dependent name that is a type must be qualified with "typename".
"/u01
"/u01/app/oracle/product/9.2.0/rdbms/demo/occiControl.h", line 1048.52: 1540-0152 (W) A template dependent name that is a type must be qualified with "typename".
"/u01/app/oracle/product/9.2.0/rdbms/demo/occiControl.h", line 1105.1: 1540-0152 (W) A template dependent name that is a type must be qualified with "typename".
在occi.h中包含了头文件occiControl.h和occiCommon.h,在occiCommon.h和occiControl.h中有一些模板函数的声明,如template <class T>;
void getVector( Statement *stmt, unsigned int index,
OCCI_STD_NAMESPACE::vector<T>; &vect),为什么编译器无法识别typename, typename是C++新标准中才有的,是不是编译的时候少了什么编译选项呢?
哪位大虾知道的恳请告诉俺一下,不胜感激!在这里先谢谢了! |
|