26#ifndef SQLITE_HAS_CODEC
27#define SQLITE_HAS_CODEC
33#include <sqlcipher/sqlite3.h>
80 std::pair<const void*, size_t>
getBlob()
const;
83 sqlite3_value* m_value;
A sqlite value.
Definition sqlvalue.h:44
bool getBool() const
Gets a bool from a value.
std::string getString() const
Gets a string from a value.
SqlValue(sqlite3_value *value)
Constructs an SqlValue.
int getInt() const
Gets an int from a value.
sqlite3_int64 getInt64() const
Gets an int64 from a value.
std::pair< const void *, size_t > getBlob() const
Gets a blob from a value.
double getDouble() const
Gets a double from a value.
Definition sqlcontext.h:40