Raw File
#include <QCoreApplication>
#include <QDebug>
#include <QLibraryInfo>
#include <QSqlDatabase>
#include <QStringList>

int main(int argc, char** argv)
{
  QCoreApplication app(argc, argv);

  qDebug() << "App path:" << app.applicationDirPath();
  qDebug() << "Plugin path:"
           << QLibraryInfo::location(QLibraryInfo::PluginsPath);

  bool foundSqlite = false;

  qDebug() << "Supported Database Drivers:";
  foreach (const QString& sqlDriver, QSqlDatabase::drivers()) {
    qDebug() << " " << sqlDriver;
    if (sqlDriver == "QSQLITE")
      foundSqlite = true;
  }

  if (foundSqlite)
    qDebug() << "Found sqlite support from plugin.";
  else
    qDebug() << "Could not find sqlite support from plugin.";
  return foundSqlite ? 0 : 1;
}
back to top