aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/sqlite/sqlitewritestatement.h
blob: 1abf76bd424b6b11c6b348d3705bb63e27735e8f (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
// 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)
        : Base(sqlStatement, database)
    {
        checkIsWritableStatement();
        Base::checkBindingParameterCount(BindParameterCount);
        Base::checkColumnCount(0);
    }

    using Base::database;
    using Base::execute;
    using Base::write;

protected:
    void checkIsWritableStatement()
    {
        if (Base::isReadOnlyStatement())
            throw NotWriteSqlStatement();
    }
};

} // namespace Sqlite