关于QT error:QtSql:No such file or directory

"error:QtSql:No such file or directory":

 

在linux下与windows是不一样的,网上一般的做法是linux下的,如果你是在windows下用vs+QT时,简单点可以这样

因为qt加载内容时,是按模块加载的,所以不能选择默认的加载模块,需要把下面用红色的画出来地方也加载进来

关于QT error:QtSql:No such file or directory_第1张图片

 

linux下则是:

结合网络资料 有两种解决方法

1.在.pro文件内添加sql支持

2.配置QT qmake参数 使其支持SQL

问题解决:)

1.After execute qmake -project ,edit .pro file and add QT variable definition.
QT += sql


2.edit qmake configuration file,append QT variable definition
Just find the line like this:
QT                      += core gui network 
change it :
QT                      += core gui network sql

你可能感兴趣的:(错误解决)