1、安装postgresql客户端。
2、需要配置postgresql客户端的bin和lib路径。
3、在程序里面加载:
QString QSdir = qApp->applicationDirPath(); QSdir.append("/sqldrivers"); QApplication::addLibraryPath(QSdir);
4、这里的sqldrivers是个文件名字,可以到QT安装目录的C:\Qt\Qt5.10.1\5.10.1\mingw53_32\plugins找到,里面包含qsqlpsql4.dll和qsqlpsqld4.dll。
5、这样就可以加载到postgresql数据库引擎了。
Python学习网,大量的免费,欢迎在线学习!