编写QT 数据库程序时 出现error: QtSql: No such file or directory错误的问题
结合网络资料 有两种解决方法
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