在项目开发中,同时使用了sqlite 和mysql数据库,分开这两部分运行功能都正常,但是一起运行,就异常,sqlite部分不能使用。
现象:出现如下提示
QSqlDatabasePrivate::addDatabase: duplicate connection name 'qt_sql_default_connection', old connection removed.
解决办法,addDatabase函数时候指定数据库类型和连接名称。
原因:如果不指定连接名称,则是默认连接'qt_sql_default_connection',那么两种数据库用
一个连接引起错乱。
The connection in the snippet will be the default connection, because we don't pass the second argument to addDatabase(), which is the connection name. For example, here we establish two MySQL database connections named "first" and "second":
原型:
[static] QSqlDatabase QSqlDatabase::addDatabase(const QString &type, const QString &connectionName = QLatin1String(defaultConnection))
//-------------以下是截取的代码-------------------
//---第1部分,DB是长连接
//...
DB = QSqlDatabase::addDatabase("QSQLITE","SQLiteConnection1");
//...
///---第2部分,db是短连接
//...
// if(QSqlDatabase::contains("MySQLConnection1"))//为避免重复,先移除掉
// QSqlDatabase::removeDatabase("MySQLConnection1");//
QSqlDatabase db = QSqlDatabase::addDatabase("QMYSQL", "MySQLConnection1");
//...
db.close();
//...