QT5.9.4支持的数据驱动查看

建立个控制台程序,里面就俩文件,如下,运行一下就可以看到当前的QT支持哪些数据驱动了。网上有类似的文章,但里面的大小写有偏差,注意。QT的版本更新太快了~

.pro

QT -= gui

QT += sql

CONFIG += c++11 console
CONFIG -= app_bundle

# The following define makes your compiler emit warnings if you use
# any feature of Qt which as been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS

# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0

SOURCES += main.cpp

 

.cpp

 

 1 #include <QCoreApplication>
 2 #include <QDebug>
 3 #include <QtSql/QSqlDriver>
 4 #include <QtSql/QSqlDatabase>
 5 
 6 int main(int argc, char *argv[])
 7 {
 8     QCoreApplication a(argc, argv);
 9 
10     qDebug()<<"当前QT支持的数据驱动有:";
11     QStringList drivers=QSqlDatabase::drivers();
12     foreach(QString dvr,drivers)
13     {
14         qDebug()<<dvr;
15     }
16 
17     return a.exec();
18 }

 

posted on 2018-02-18 16:50  东地信  阅读(816)  评论(0编辑  收藏  举报