QSqlite遇到的问题
作者:互联网
①
问题:QSqlDatabasePrivate::database: requested database does not belong to the calling thread.
原因:在主线程中创建了数据库,初始化了表结构,然后子线程中直接使用数据库,查资料发现不能这样干。
解决办法:网上提到使用线程池,或者在子线程中重新创建数据库连接,我采用的第二种,因为数据库操作很少。
②
问题:QSqlQuery::exec: database not open QSqlError("", “Driver not loaded”, “Driver not loaded”)
原因:好像是需要绑定数据库。
现象:在主线程中不需要绑定,在子线程中不绑定就有这个问题。
解决办法:在请求数据的时候,QSqlQuery query(QSqlDatabase db)的方式初始化绑定。
下面提交一个主/子线程调用代码
主线程
do{
QSqlDatabase sqliteDB = QSqlDatabase::addDatabase("QSQLITE","SELFSQLITE");
sqliteDB.setDatabaseName("box6604.db");
if (!sqliteDB.open()){
qCritical("Failed to connect SqliteDatabase");
return;
}
qInfo("Succeed to connect SqliteDatabas");
do{
//执行其他操作
QSqlQuery sql_query; //这里不用绑定
QString sql_content(R"(create table if not exists XX(id int primary key))");
if(!sql_query.exec(sql_content)){
qCritical("Fail to create table XX");
}
qInfo("Succeed to create table XX");
}while(0);
}while(0);
QSqlDatabase::removeDatabase("SELFSQLITE");
子线程
do{
QSqlDatabase sqliteDB = QSqlDatabase::addDatabase("QSQLITE","SELFSQLITE");
sqliteDB.setDatabaseName("box6604.db");
if (!sqliteDB.open()){
qCritical("Failed to connect SqliteDatabase");
return;
}
qInfo("Succeed to connect SqliteDatabas");
do{
//执行其他操作
QSqlQuery sql_query(sqliteDB); //这里必须绑定
QString sql_content(R"(create table if not exists XX(id int primary key))");
if(!sql_query.exec(sql_content)){
qCritical("Fail to create table XX");
}
qInfo("Succeed to create table XX");
}while(0);
}while(0);
QSqlDatabase::removeDatabase("SELFSQLITE");
标签:遇到,create,问题,sqliteDB,线程,sql,table,QSqlite,QSqlDatabase 来源: https://blog.csdn.net/youyicc/article/details/110229277