3

如果表尚不存在,我试图仅初始化我的 sqlite 数据库。如果没有,则应创建它们。现在检查总是在干净的数据库上成功(当然该表还不存在),但是一旦我尝试在if-block 内创建它,sqlite 就会抱怨它确实存在。我可以在该代码运行后确认该表存在,但我仍然从qFatal调用中收到该错误消息。

#include <QApplication>
#include <QDebug>

#include <QSqlDatabase>
#include <QSqlQuery>
#include <QSqlError>
#include <QStringList>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

    QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
    db.setDatabaseName(":memory:");
    if(!db.open())
        qDebug() << "Couldn't open database file!";
    else
        qDebug() << "Opened database :memory:";

    qDebug() << "Existing tables:";
    QStringList::const_iterator it;
    for(it = db.tables().begin(); it != db.tables().end(); it++)
        qDebug() << it->toLocal8Bit().constData();
    qDebug() << "End";

    if(!db.tables().contains(QString("testtable")))
    {
        // The files table doesn't exist
        qDebug() << "Initializing DB";
        QString queryText = "CREATE TABLE testtable (id varchar(32) NOT NULL)";
        QSqlQuery query(queryText, db);
        if(!query.exec())
            qFatal("Couldn't initialize database: %s: %s", qPrintable(query.lastError().driverText()), qPrintable(query.lastError().databaseText()));
    }

    return a.exec();
}

参考输出:

Opened database :memory: 
Existing tables: 
End 
Initializing DB 
Couldn't initialize database: Unable to fetch row: table testtable already exists

我通过IF NOT EXISTS在 sql 查询中使用来解决这个问题,但这并没有真正解决问题。(OS X 和 Ubuntu 12.04 上的 Qt 4.8)

4

2 回答 2

0

可能是我遗漏了一些东西,但是如果您使用“:memory:”存储,为什么需要这样的检查。无论如何,在进程重新启动后,您的数据库将为空。

于 2013-04-20T14:32:56.043 回答
0

我自己也注意到了这种行为。如果你查看源代码,你会看到这一行:

int openMode = (openReadOnlyOption ? SQLITE_OPEN_READONLY : (SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE));

然后,进入SQLite 的源代码

** ^(<dt>[SQLITE_OPEN_READWRITE] | [SQLITE_OPEN_CREATE]</dt>
** <dd>The database is opened for reading and writing, and is created if
** it does not already exist. This is the behavior that is always used for
** sqlite3_open() and sqlite3_open16().</dd>)^

我没有进一步关注它,但我认为可以安全地假设 Qt 正在传递这个标志。

这似乎是特定于驱动程序的行为,所以也许这就是它没有记录的原因。

于 2016-01-07T14:02:20.563 回答