This repository was archived by the owner on Jan 3, 2024. It is now read-only.
forked from m-ildefons/fsck.s3gw
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsqlite.cc
76 lines (68 loc) · 1.99 KB
/
sqlite.cc
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
/*
* Copyright 2023 SUSE, LLC.
*
* This is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software
* Foundation. See file LICENSE.
*/
#include "sqlite.h"
#include <sqlite3.h>
#include <filesystem>
#include <iostream>
Database::Database(const std::filesystem::path& _db)
: db(_db), handle(nullptr) {
int rc = sqlite3_open(db.string().c_str(), &handle);
if (rc != SQLITE_OK) {
const char* err = sqlite3_errmsg(handle);
sqlite3_close(handle);
throw std::runtime_error(err);
}
}
Database::~Database() {
sqlite3_close(handle);
}
/* Count in Table - Count number of rows in named table where the condition
* is true. Translates directly into:
*
* SELECT COUNT(*) FROM table WHERE condition ;
*/
int Database::count_in_table(
const std::string& table, const std::string& condition
) const {
std::string query =
"SELECT COUNT(*) FROM " + table + " WHERE " + condition + ";";
Statement stm(handle, query);
int count = 0;
if (sqlite3_step(stm) == SQLITE_ROW && sqlite3_column_count(stm) > 0) {
count = sqlite3_column_int(stm, 0);
}
return count;
}
// TODO: delete this, it's not used anywhere
/* Select from Table - Get all non-null entries of one column from a table.
* Translates into:
*
* SELECT column FROM table WHERE column IS NOT NULL ;
*/
/*
std::vector<std::string> Database::select_from_table(
const std::string& table, const std::string& column
) const {
std::string query = "SELECT " + column + " FROM " + table + " WHERE " +
column + " IS NOT NULL;";
int rc = 0;
sqlite3_stmt* stm;
const char* unused = 0;
std::vector<std::string> result;
rc = sqlite3_prepare(handle, query.c_str(), query.length(), &stm, &unused);
if (rc != SQLITE_OK) {
throw std::runtime_error(sqlite3_errmsg(handle));
}
do {
rc = sqlite3_step(stm);
} while (rc == SQLITE_ROW);
sqlite3_finalize(stm);
return result;
}
*/