我正在尝试在 Ubuntu 上运行以下测试程序,以使用即时客户端 OCCI 库连接到 oracle 数据库。
#include <iostream>
#include <occi.h>
using namespace oracle::occi;
int main() {
Environment *env = Environment::createEnvironment(Environment::DEFAULT);
Connection *conn = env->createConnection( "user", "1234" );
env->terminateConnection(conn);
Environment::terminateEnvironment(env);
}
编译时没有错误
g++ main.cpp -L ~/instantclient_12_2 -locci -lclntsh -I ~/instantclient_12_2/sdk/include
但是在跑步时我得到
terminate called after throwing an instance of 'oracle::occi::SQLException'
what(): ORA-24960: the attribute OCI_ATTR_USERNAME is greater than the maximum allowable length of 255
Aborted
我正在运行 Ubuntu 16.04、gcc 5.4.0,并且使用即时客户端 11.2 和 12.2 得到了相同的结果。
这之前已经问过:https://stackoverflow.com/questions/40022118/ora-24960-the-attribute-oci-attr-username-is-greater-than-the-maximum 但答案不适用于 linux(或者我错过了重点(。
任何帮助将不胜感激。
通过恢复到较旧的编译器解决了该问题。
$ sudo apt-get install g++-4.8
$ g++-4.8 main.cpp -L ~/instantclient_12_2 -locci -lclntsh -I ~/instantclient_12_2/sdk/include
也许最新的编译器和库与用于构建 OCCI 库的编译器和库不兼容。
也有助于使用 -D_GLIBCXX_USE_CXX11_ABI=0 标志。
如果您使用的是CMake
1( 在 CMakeList 上添加此行.txt以指定要使用的编译器
SET(CMAKE_CXX_COMPILER /usr/bin/g++-4.8)
P.S 您可能需要安装 g++-4.8
(apt-get install g++-4.8)