blob: 82336941695ca83655d38b2ffd2d011769a723dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "sqlitebasestatement.h"
namespace Sqlite {
template<int BindParameterCount = 0>
class WriteStatement : protected StatementImplementation<BaseStatement, -1, BindParameterCount>
{
using Base = StatementImplementation<BaseStatement, -1, BindParameterCount>;
public:
WriteStatement(Utils::SmallStringView sqlStatement,
Database &database,
const source_location &sourceLocation = source_location::current())
: Base(sqlStatement, database, sourceLocation)
{
checkIsWritableStatement(sourceLocation);
Base::checkBindingParameterCount(BindParameterCount, sourceLocation);
Base::checkColumnCount(0, sourceLocation);
}
using Base::database;
using Base::execute;
using Base::write;
protected:
void checkIsWritableStatement(const source_location &sourceLocation)
{
if (Base::isReadOnlyStatement())
throw NotWriteSqlStatement(sourceLocation);
}
};
} // namespace Sqlite
|