Bitcoin ABC 0.30.5
P2P Digital Currency
|
#include <wallet/sqlite.h>
#include <logging.h>
#include <sync.h>
#include <util/fs_helpers.h>
#include <util/strencodings.h>
#include <util/translation.h>
#include <wallet/db.h>
#include <cstdint>
#include <sqlite3.h>
Go to the source code of this file.
Functions | |
static int g_sqlite_count | GUARDED_BY (g_sqlite_mutex)=0 |
static void | ErrorLogCallback (void *arg, int code, const char *msg) |
bool | ExistsSQLiteDatabase (const fs::path &path) |
std::unique_ptr< SQLiteDatabase > | MakeSQLiteDatabase (const fs::path &path, const DatabaseOptions &options, DatabaseStatus &status, bilingual_str &error) |
std::string | SQLiteDatabaseVersion () |
Variables | |
static const char *const | DATABASE_FILENAME = "wallet.dat" |
static GlobalMutex | g_sqlite_mutex |
|
static |
Definition at line 22 of file sqlite.cpp.
bool ExistsSQLiteDatabase | ( | const fs::path & | path | ) |
Definition at line 602 of file sqlite.cpp.
|
staticpure virtual |
std::unique_ptr< SQLiteDatabase > MakeSQLiteDatabase | ( | const fs::path & | path, |
const DatabaseOptions & | options, | ||
DatabaseStatus & | status, | ||
bilingual_str & | error | ||
) |
std::string SQLiteDatabaseVersion | ( | ) |
|
static |
Definition at line 17 of file sqlite.cpp.
|
static |
Definition at line 19 of file sqlite.cpp.