forked from qt-creator/qt-creator
Sqlite: Remove static database handle
Change-Id: Ic31f61a477ad681652eeccdaa39f82970c57eb5a Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
@@ -29,8 +29,9 @@
|
||||
|
||||
namespace Sqlite {
|
||||
|
||||
SqliteReadStatement::SqliteReadStatement(const Utf8String &sqlStatementUtf8)
|
||||
: SqliteStatement(sqlStatementUtf8)
|
||||
SqliteReadStatement::SqliteReadStatement(const Utf8String &sqlStatementUtf8,
|
||||
SqliteDatabase &database)
|
||||
: SqliteStatement(sqlStatementUtf8, database)
|
||||
{
|
||||
checkIsReadOnlyStatement();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user