从SQLite获取记录?

时间:2013-05-04 12:11:30

标签: c++ sqlite qt

如何从表格和行中获取指定的记录? 例如:

这是datebase(sqlite)的伪结构:

Row1 Row2 Row3
Line1 Line1 Line1
Line2 Line2 Line2
... ... ...

我想通过Qt使用来自datebase的行记录。 例如,我如何获得Row2-> Line2 字符串?

我试过了:

QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE"); 
db.setDatabaseName("db.db"); //Yes the name of datebase is db.db
   if (db.open())
{
    QSqlQuery soruAl("SELECT question FROM questions",db);
    soruAl.exec();soruAl.first(); //These line does not affect result "QSqlQuery::value: not positioned on a valid record". 
    qDebug() << soruAl.value(5).toString(); // Here I want to get the 5. line of the question row which is in questions table.
}
else
{
    qDebug() << "Error";
}

但只有我从调试器获得的响应是​​“QSqlQuery :: value:没有定位在有效记录上”

1 个答案:

答案 0 :(得分:1)

你做错了。这是the example of doing it right

另外,我建议你仔细阅读QtSqlQuery help - 这一切都在那里描述。很大的帮助是使用Qt的最大优势之一。