aboutsummaryrefslogtreecommitdiff
path: root/src/example/db.cpp
blob: b1ab19681e20042b9eb79fe49951154d3facc666 (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
#include <crepe/DB.h>
#include <crepe/api/Config.h>
#include <crepe/util/log.h>

using namespace crepe;
using namespace std;

// run before main
static auto _ = [] () {
	auto & cfg = api::Config::get_instance();
	cfg.log.level = util::LogLevel::TRACE;
	return 0;
}();

int main() {
	dbg_trace();

	DB db("file.db");

	const char * test_key = "test-key";
	string test_data = "Hello world!";

	dbg_logf("DB has key = %d", db.has(test_key));

	db.set(test_key, test_data);

	dbg_logf("key = \"%s\"", db.get(test_key).c_str());

	return 0;
}