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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/*
Copyright (C) 2023 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
DCP-o-matic is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
DCP-o-matic is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
*/
#include "exceptions.h"
#include "sqlite_database.h"
#include "sqlite_statement.h"
using std::function;
using std::string;
SQLiteStatement::SQLiteStatement(SQLiteDatabase& db, string const& statement)
: _db(db)
{
#ifdef DCPOMATIC_HAVE_SQLITE3_PREPARE_V3
auto rc = sqlite3_prepare_v3(_db.db(), statement.c_str(), -1, 0, &_stmt, nullptr);
#else
auto rc = sqlite3_prepare_v2(_db.db(), statement.c_str(), -1, &_stmt, nullptr);
#endif
if (rc != SQLITE_OK) {
throw SQLError(_db, rc, statement);
}
}
SQLiteStatement::~SQLiteStatement()
{
sqlite3_finalize(_stmt);
}
void
SQLiteStatement::bind_text(int index, string const& value)
{
auto rc = sqlite3_bind_text(_stmt, index, value.c_str(), -1, SQLITE_TRANSIENT);
if (rc != SQLITE_OK) {
throw SQLError(_db, rc);
}
}
void
SQLiteStatement::bind_int64(int index, int64_t value)
{
auto rc = sqlite3_bind_int64(_stmt, index, value);
if (rc != SQLITE_OK) {
throw SQLError(_db, rc);
}
}
void
SQLiteStatement::bind_double(int index, double value)
{
auto rc = sqlite3_bind_double(_stmt, index, value);
if (rc != SQLITE_OK) {
throw SQLError(_db, rc);
}
}
void
SQLiteStatement::execute(function<void(SQLiteStatement&)> row, function<void()> busy)
{
while (true) {
auto const rc = sqlite3_step(_stmt);
switch (rc) {
case SQLITE_BUSY:
busy();
break;
case SQLITE_DONE:
return;
case SQLITE_ROW:
row(*this);
break;
case SQLITE_ERROR:
case SQLITE_MISUSE:
throw SQLError(_db, sqlite3_errmsg(_db.db()));
}
}
}
int
SQLiteStatement::data_count()
{
return sqlite3_data_count(_stmt);
}
int64_t
SQLiteStatement::column_int64(int index)
{
return sqlite3_column_int64(_stmt, index);
}
double
SQLiteStatement::column_double(int index)
{
return sqlite3_column_double(_stmt, index);
}
string
SQLiteStatement::column_text(int index)
{
return reinterpret_cast<const char*>(sqlite3_column_text(_stmt, index));
}
|