-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsqlite_statement_manager.cpp
61 lines (54 loc) · 1.98 KB
/
sqlite_statement_manager.cpp
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
#include "sqlite_statement_manager.hpp"
#include <iostream>
#include <sqlite3.h>
#include <string_view>
namespace tsp {
void exit_with_sqlite_err(const char *msg, std::string_view sql, int ret,
sqlite3 *conn) {
std::cerr << msg << std::endl;
std::cerr << sql << std::endl;
std::cerr << ret << ": ";
std::cerr << sqlite3_errmsg(conn) << std::endl;
std::exit(EXIT_FAILURE);
}
Sqlite_statement_manager::Sqlite_statement_manager(sqlite3 *conn,
std::string_view sql,
bool dostep)
: sql_(sql), sqlite_ret_(SQLITE_OK), conn_(conn) {
if ((sqlite_ret_ = sqlite3_prepare_v2(conn_, sql_.data(), -1, &stmt,
nullptr)) != SQLITE_OK) {
exit_with_sqlite_err("Could not prepare the following sql statement:", sql_,
sqlite_ret_, conn_);
}
if (dostep) {
step(false);
}
}
Sqlite_statement_manager::Sqlite_statement_manager(sqlite3 *conn,
std::string_view sql)
: Sqlite_statement_manager(conn, sql, false) {}
Sqlite_statement_manager::~Sqlite_statement_manager() {
if ((sqlite_ret_ = sqlite3_finalize(stmt)) != SQLITE_OK) {
exit_with_sqlite_err("Unable finalize statement:\n", sql_, sqlite_ret_,
conn_);
};
}
int Sqlite_statement_manager::step(bool must_have_row) {
sqlite_ret_ = sqlite3_step(stmt);
if (sqlite_ret_ == SQLITE_DONE) {
if (must_have_row) {
exit_with_sqlite_err(
"Statement was expected to return results but did not:\n", sql_,
sqlite_ret_, conn_);
}
return sqlite_ret_;
} else if (sqlite_ret_ == SQLITE_ROW) {
return sqlite_ret_;
} else {
exit_with_sqlite_err("SQLite step for statement failed:\n", sql_,
sqlite_ret_, conn_);
return sqlite_ret_;
}
}
int Sqlite_statement_manager::step() { return step(false); }
} // namespace tsp