出于性能原因,我在代码中使用了大量参数化查询。简而言之,其中一些是有效的,有些则不然。
我在构建数据库包装器时初始化查询,如下所示:
QString querystring = QString("SELECT somevalue FROM sometable "
"WHERE one_feature = :one_feature AND other_feature = :other_feature ");
myquery = QSqlQuery(db);
myquery.setForwardOnly(true);
myquery.prepare(querystring);
myquery
是我的数据库包装器的QSqlQuery
成员变量。稍后,在想要使用此查询的函数中,我执行类似
int db_wrapper::fetch_some_value (int arg1, int arg2) {
myquery.clear();
myquery.bindValue(":one_feature", arg1);
myquery.bindValue(":other_feature", arg2);
qDebug() << "Bound values: " << myquery.boundValues();
bool OK = myquery.exec();
if (!OK) {
int number = myquery.lastError().number();
qDebug() << "db error " << number;
qDebug() << "db error " << myquery.lastError().text();
#ifdef USE_EXCEPTIONS
throw "Could not fetch some_value!";
#endif
}
// process data...
}
我总是得到相同的错误信息/输出:
Bound values: QMap((":one_feature", QVariant(int, 1) ) ( ":other_feature" , QVariant(int, 1) ) )
db error -1
db error " Parameter count mismatch"
terminate called after throwing an instance of 'char const*'
异常并不奇怪,但参数计数不匹配。对boundValues
的调用实际上显示了正确的值和所有,但我仍然收到此错误消息。我有类似的查询可以正常工作。
我尝试替换位置绑定值,重命名占位符,使用?
和位置绑定值,但都无济于事。有谁知道问题可能是什么?
我使用Qt 4.7.3和SQLite 3.7.4-2
答案 0 :(得分:5)
通常此错误表示SELECT / UPDATE查询本身不正确。您没有给出数据库的模式,因此无法确定哪一个。因此,somevalue
,sometable
,one_feature
或second_feature
中的一个或多个不在数据库/表格中。