Qt Sql INSERT语句无效

时间:2015-06-30 14:16:24

标签: c++ sql qt sqlite

我在Windows上使用Qt 4.8。在简单的程序中,INSERT语句似乎不起作用。基本调试语句不显示任何错误字符串。谷歌无法帮助我。在SO similar question上存在。

sql.h

#ifndef SQL_H
#define SQL_H
#include<QtSql>
#include<QtGui>
#include<QDebug>
class Unit
{
public:
    Unit()
    {
        QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
        db.setDatabaseName("x");
        bool ok = db.open();

        QSqlQuery query;
        query.exec("create table vidyarthi(section integer(10), unit integer(10), details varchar(500));");


        query.exec("insert into vidyarthi values( 1,2,'Hello world');");

        qDebug()<<query.lastError().databaseText(); // prints "" means empty
        qDebug()<<query.lastError().text(); // prints  "" means empty


        QSqlTableModel *tmodel=new QSqlTableModel;
        tmodel->setTable("vidyarthi");
        qDebug()<<tmodel->rowCount(); // prints 0


        QTableView *tv=new QTableView;
        tv->setModel(tmodel);
        tv->show();
    }

};

#endif // SQL_H

main()功能: -

#include "widget.h"
#include <QApplication>
#include<QtCore>
#include<sql.h>
int main(int argc, char *argv[])
{
   QApplication a(argc, argv);

    Unit unit;

   return a.exec();
}

我的输出TableView实际上只有标题(表的列)但没有行。

1 个答案:

答案 0 :(得分:2)

您必须致电QSqlTableModel::select()以使用数据填充模型。

QSqlTableModel class

的详细说明中对此进行了解释