-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.h
55 lines (46 loc) · 1.04 KB
/
database.h
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
#pragma once
#include <SQLiteCpp/Database.h>
#include <functional>
namespace database
{
template <typename t> struct query_binding
{
std::string bind;
t value;
query_binding(std::string bind, t value) : bind(bind), value(value)
{
}
};
template <typename... t>
int exec(const SQLite::Database &database, const std::string &query, const query_binding<t> &...bindings)
{
SQLite::Statement statement(database, query);
(
[&]
{
statement.bind(bindings.bind, bindings.value);
}(),
...);
return statement.exec();
}
template <typename... t>
int exec_steps(const SQLite::Database &database, const std::string &query, const query_binding<t> &...bindings,
std::function<void(const SQLite::Statement &)> callback = nullptr)
{
SQLite::Statement statement(database, query);
(
[&]
{
statement.bind(bindings.bind, bindings.value);
}(),
...);
int i = 0;
while (statement.executeStep())
{
i++;
if (callback)
callback(statement);
}
return i;
}
}