1

我按照http://doc.qt.digia.com/4.7-snapshot/sql-driver.html#general-information-about-the-oci-plugin中给出的 Windows 说明编译了 Oracle Oci 驱动程序

直到最后一步我用mingw32-make替换nmake。我明白了。

mingw32-make -f Makefile.Debug
mingw32-make[1]: Entering directory `C:/QtSDK/QtSources/4.7.4/src/sql/drivers/oci'
g++ -c -g -frtti -fexceptions -mthreads -Wall -DUNICODE -DQT_LARGEFILE_SUPPORT -
DQT_DLL -DQT_GUI_LIB -DQT_CORE_LIB -DQT_HAVE_MMX -DQT_HAVE_3DNOW -DQT_HAVE_SSE -
DQT_HAVE_MMXEXT -DQT_HAVE_SSE2 -DQT_THREAD_SUPPORT -DQT_NEEDS_QMAIN -I"c:\QtSDK\
Desktop\Qt\4.7.4\mingw\include\QtCore" -I"c:\QtSDK\Desktop\Qt\4.7.4\mingw\includ
e\QtGui" -I"c:\QtSDK\Desktop\Qt\4.7.4\mingw\include" -I"c:\QtSDK\Desktop\Qt\4.7.
4\mingw\include\ActiveQt" -I"debug" -I"c:\QtSDK\Desktop\Qt\4.7.4\mingw\mkspecs\d
efault" -o debug\qsql_oci.o qsql_oci.cpp
In file included from qsql_oci.cpp:42:
qsql_oci.h:47:46: error: QtSql/private/qsqlcachedresult_p.h: No such file or dir
ectory
qsql_oci.cpp:50:23: error: qsqlerror.h: No such file or directory
qsql_oci.cpp:51:23: error: qsqlfield.h: No such file or directory
qsql_oci.cpp:52:23: error: qsqlindex.h: No such file or directory
qsql_oci.cpp:53:23: error: qsqlquery.h: No such file or directory
qsql_oci.cpp:65:17: error: oci.h: No such file or directory

其次是很多错误,但我想所有这些都与无法找到头文件有关。谁能告诉我为什么会这样?我确实包含了前两个步骤中给出的所有 INCLUDE 和 LIB 的正确路径

更新
我修改了 qmake -project 创建的 .pro 文件并添加了QT+= sql所有与 sql 相关的标头错误都消失了,但第一个qsqlcachedresult_p.h和最后一个oci.h仍然存在。

4

2 回答 2

0

尝试也添加include\QtSql-I选项。我不确切知道如何在这种环境中做到这一点,但也许正在运行

set CPP_FLAGS="-Ic:\QtSDK\Desktop\Qt\4.7.4\mingw\include\QtSql"

make命令执行之前。

于 2012-09-24T06:02:00.170 回答
0

为了解决剩下的两个标题问题,这就是我所做的 -

  1. 对于 oci.h 文件,手动编辑 makefile.release 和 makefile.debug 以在 INCPATH 变量中包含头文件的路径。(类似 -I"C:\XEClient\oci\include")。

  2. qsqlcachedresult_p.h 位于 QT/src/sql/kernel 目录中。所以我将头文件复制到了C:\QtSDK\Desktop\Qt\4.7.4\mingw\include\QtSql\private 的新目录中。

之后编译没有错误。

这篇文章很有帮助 - http://www.qtcentre.org/threads/41904-Oracle-Call-Interface-(OCI)-driver-problems

于 2012-09-25T19:04:11.287 回答