Commit 94ff8e83 authored by Davis King's avatar Davis King

Just removed the sqlite namespace and unindended everything.

parent 8d1cf196
......@@ -11,551 +11,548 @@
#include <sqlite3.h>
#include "../smart_pointers.h"
// ----------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------------
namespace dlib
{
namespace sqlite
// --------------------------------------------------------------------------------------------
struct sqlite_error : public error
{
sqlite_error(const std::string& message): error(message) {}
};
// ------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------------
struct sqlite_error : public error
namespace impl
{
struct db_deleter
{
sqlite_error(const std::string& message): error(message) {}
void operator()(
sqlite3* db
)const
{
sqlite3_close(db);
}
};
}
// ------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------------
namespace impl
class database : noncopyable
{
public:
database(
)
{
struct db_deleter
{
void operator()(
sqlite3* db
)const
{
sqlite3_close(db);
}
};
}
// ------------------------------------------------------------------------------------
database (
const std::string& file
)
{
open(file);
}
class database : noncopyable
bool is_open (
) const
{
public:
database(
)
{
}
return db.get() != 0;
}
database (
const std::string& file
)
void open (
const std::string& file
)
{
filename = file;
sqlite3* ptr = 0;
int status = sqlite3_open(file.c_str(), &ptr);
db.reset(ptr, impl::db_deleter());
if (status != SQLITE_OK)
{
open(file);
throw sqlite_error(sqlite3_errmsg(db.get()));
}
}
bool is_open (
) const
{
return db.get() != 0;
}
const std::string& get_database_filename (
) const
{
// make sure requires clause is not broken
DLIB_ASSERT(is_open() == true,
"\t std::string database::get_database_filename()"
<< "\n\t The database must be opened before calling this routine."
<< "\n\t this: " << this
);
void open (
const std::string& file
)
{
filename = file;
sqlite3* ptr = 0;
int status = sqlite3_open(file.c_str(), &ptr);
db.reset(ptr, impl::db_deleter());
if (status != SQLITE_OK)
{
throw sqlite_error(sqlite3_errmsg(db.get()));
}
}
return filename;
}
const std::string& get_database_filename (
) const
{
// make sure requires clause is not broken
DLIB_ASSERT(is_open() == true,
"\t std::string sqlite::database::get_database_filename()"
<< "\n\t The database must be opened before calling this routine."
<< "\n\t this: " << this
);
inline void exec (
const std::string& sql_statement
);
return filename;
}
private:
inline void exec (
const std::string& sql_statement
);
friend class statement;
private:
std::string filename;
shared_ptr<sqlite3> db;
};
friend class statement;
// --------------------------------------------------------------------------------------------
std::string filename;
shared_ptr<sqlite3> db;
};
class statement : noncopyable
{
public:
statement (
database& db_,
const std::string sql_statement
) :
needs_reset(false),
step_status(SQLITE_DONE),
at_first_step(true),
db(db_.db),
stmt(0),
sql_string(sql_statement)
{
// make sure requires clause is not broken
DLIB_ASSERT(db_.is_open() == true,
"\t statement::statement()"
<< "\n\t The database must be opened before calling this routine."
<< "\n\t this: " << this
);
// ------------------------------------------------------------------------------------
int status = sqlite3_prepare_v2(db.get(),
sql_string.c_str(),
sql_string.size()+1,
&stmt,
NULL);
class statement : noncopyable
{
public:
statement (
database& db_,
const std::string sql_statement
) :
needs_reset(false),
step_status(SQLITE_DONE),
at_first_step(true),
db(db_.db),
stmt(0),
sql_string(sql_statement)
if (status != SQLITE_OK)
{
// make sure requires clause is not broken
DLIB_ASSERT(db_.is_open() == true,
"\t sqlite::statement::statement()"
<< "\n\t The database must be opened before calling this routine."
<< "\n\t this: " << this
);
sqlite3_finalize(stmt);
throw sqlite_error(sqlite3_errmsg(db.get()));
}
if (stmt == 0)
{
throw sqlite_error("Invalid SQL statement");
}
}
int status = sqlite3_prepare_v2(db.get(),
sql_string.c_str(),
sql_string.size()+1,
&stmt,
NULL);
~statement(
)
{
sqlite3_finalize(stmt);
}
if (status != SQLITE_OK)
{
sqlite3_finalize(stmt);
throw sqlite_error(sqlite3_errmsg(db.get()));
}
if (stmt == 0)
{
throw sqlite_error("Invalid SQL statement");
}
}
void exec(
)
{
reset();
~statement(
)
step_status = sqlite3_step(stmt);
needs_reset = true;
if (step_status != SQLITE_DONE && step_status != SQLITE_ROW)
{
sqlite3_finalize(stmt);
if (step_status == SQLITE_ERROR)
throw sqlite_error(sqlite3_errmsg(db.get()));
else if (step_status == SQLITE_BUSY)
throw sqlite_error("statement::exec() failed. SQLITE_BUSY returned");
else
throw sqlite_error("statement::exec() failed.");
}
}
void exec(
)
bool move_next (
)
{
if (step_status == SQLITE_ROW)
{
reset();
step_status = sqlite3_step(stmt);
needs_reset = true;
if (step_status != SQLITE_DONE && step_status != SQLITE_ROW)
if (at_first_step)
{
if (step_status == SQLITE_ERROR)
throw sqlite_error(sqlite3_errmsg(db.get()));
else if (step_status == SQLITE_BUSY)
throw sqlite_error("sqlite::statement::exec() failed. SQLITE_BUSY returned");
else
throw sqlite_error("sqlite::statement::exec() failed.");
at_first_step = false;
return true;
}
}
bool move_next (
)
{
if (step_status == SQLITE_ROW)
else
{
if (at_first_step)
step_status = sqlite3_step(stmt);
if (step_status == SQLITE_DONE)
{
return false;
}
else if (step_status == SQLITE_ROW)
{
at_first_step = false;
return true;
}
else
{
step_status = sqlite3_step(stmt);
if (step_status == SQLITE_DONE)
{
return false;
}
else if (step_status == SQLITE_ROW)
{
return true;
}
else
{
throw sqlite_error(sqlite3_errmsg(db.get()));
}
throw sqlite_error(sqlite3_errmsg(db.get()));
}
}
else
{
return false;
}
}
unsigned long get_num_columns(
) const
else
{
if( (at_first_step==false) && (step_status==SQLITE_ROW))
{
return sqlite3_column_count(stmt);
}
else
{
return 0;
}
return false;
}
}
const std::string& get_sql_string (
) const
unsigned long get_num_columns(
) const
{
if( (at_first_step==false) && (step_status==SQLITE_ROW))
{
return sqlite3_column_count(stmt);
}
else
{
return sql_string;
return 0;
}
}
const std::string& get_sql_string (
) const
{
return sql_string;
}
const std::vector<char> get_column_as_blob (
unsigned long idx
) const
{
// make sure requires clause is not broken
DLIB_ASSERT(idx < get_num_columns(),
"\t std::vector<char> sqlite::statement::get_column_as_blob()"
<< "\n\t Invalid column index."
<< "\n\t idx: " << idx
<< "\n\t this: " << this
);
const char* data = static_cast<const char*>(sqlite3_column_blob(stmt, idx));
const int size = sqlite3_column_bytes(stmt, idx);
const std::vector<char> get_column_as_blob (
unsigned long idx
) const
{
// make sure requires clause is not broken
DLIB_ASSERT(idx < get_num_columns(),
"\t std::vector<char> statement::get_column_as_blob()"
<< "\n\t Invalid column index."
<< "\n\t idx: " << idx
<< "\n\t this: " << this
);
return std::vector<char>(data, data+size);
}
const char* data = static_cast<const char*>(sqlite3_column_blob(stmt, idx));
const int size = sqlite3_column_bytes(stmt, idx);
template <typename T>
void get_column_as_object (
unsigned long idx,
T& item
) const
{
// make sure requires clause is not broken
DLIB_ASSERT(idx < get_num_columns(),
"\t void sqlite::statement::get_column_as_object()"
<< "\n\t Invalid column index."
<< "\n\t idx: " << idx
<< "\n\t this: " << this
);
return std::vector<char>(data, data+size);
}
const char* data = static_cast<const char*>(sqlite3_column_blob(stmt, idx));
const int size = sqlite3_column_bytes(stmt, idx);
std::istringstream sin(std::string(data,size));
deserialize(item, sin);
}
template <typename T>
void get_column_as_object (
unsigned long idx,
T& item
) const
{
// make sure requires clause is not broken
DLIB_ASSERT(idx < get_num_columns(),
"\t void statement::get_column_as_object()"
<< "\n\t Invalid column index."
<< "\n\t idx: " << idx
<< "\n\t this: " << this
);
const std::string get_column_as_text (
unsigned long idx
) const
{
// make sure requires clause is not broken
DLIB_ASSERT(idx < get_num_columns(),
"\t std::string sqlite::statement::get_column_as_text()"
<< "\n\t Invalid column index."
<< "\n\t idx: " << idx
<< "\n\t this: " << this
);
const char* data = static_cast<const char*>(sqlite3_column_blob(stmt, idx));
const int size = sqlite3_column_bytes(stmt, idx);
std::istringstream sin(std::string(data,size));
deserialize(item, sin);
}
const char* data = reinterpret_cast<const char*>(sqlite3_column_text(stmt, idx));
return std::string(data);
}
const std::string get_column_as_text (
unsigned long idx
) const
{
// make sure requires clause is not broken
DLIB_ASSERT(idx < get_num_columns(),
"\t std::string statement::get_column_as_text()"
<< "\n\t Invalid column index."
<< "\n\t idx: " << idx
<< "\n\t this: " << this
);
double get_column_as_double (
unsigned long idx
) const
{
// make sure requires clause is not broken
DLIB_ASSERT(idx < get_num_columns(),
"\t double sqlite::statement::get_column_as_double()"
<< "\n\t Invalid column index."
<< "\n\t idx: " << idx
<< "\n\t this: " << this
);
const char* data = reinterpret_cast<const char*>(sqlite3_column_text(stmt, idx));
return std::string(data);
}
return sqlite3_column_double(stmt, idx);
}
double get_column_as_double (
unsigned long idx
) const
{
// make sure requires clause is not broken
DLIB_ASSERT(idx < get_num_columns(),
"\t double statement::get_column_as_double()"
<< "\n\t Invalid column index."
<< "\n\t idx: " << idx
<< "\n\t this: " << this
);
int get_column_as_int (
unsigned long idx
) const
{
// make sure requires clause is not broken
DLIB_ASSERT(idx < get_num_columns(),
"\t int sqlite::statement::get_column_as_int()"
<< "\n\t Invalid column index."
<< "\n\t idx: " << idx
<< "\n\t this: " << this
);
return sqlite3_column_double(stmt, idx);
}
return sqlite3_column_int(stmt, idx);
}
int get_column_as_int (
unsigned long idx
) const
{
// make sure requires clause is not broken
DLIB_ASSERT(idx < get_num_columns(),
"\t int statement::get_column_as_int()"
<< "\n\t Invalid column index."
<< "\n\t idx: " << idx
<< "\n\t this: " << this
);
int64 get_column_as_int64 (
unsigned long idx
) const
{
// make sure requires clause is not broken
DLIB_ASSERT(idx < get_num_columns(),
"\t int64 sqlite::statement::get_column_as_int64()"
<< "\n\t Invalid column index."
<< "\n\t idx: " << idx
<< "\n\t this: " << this
);
return sqlite3_column_int(stmt, idx);
}
return sqlite3_column_int64(stmt, idx);
}
int64 get_column_as_int64 (
unsigned long idx
) const
{
// make sure requires clause is not broken
DLIB_ASSERT(idx < get_num_columns(),
"\t int64 statement::get_column_as_int64()"
<< "\n\t Invalid column index."
<< "\n\t idx: " << idx
<< "\n\t this: " << this
);
const std::string get_column_name (
unsigned long idx
) const
{
// make sure requires clause is not broken
DLIB_ASSERT(idx < get_num_columns(),
"\t std::string sqlite::statement::get_column_name()"
<< "\n\t Invalid column index."
<< "\n\t idx: " << idx
<< "\n\t this: " << this
);
return sqlite3_column_int64(stmt, idx);
}
return std::string(sqlite3_column_name(stmt,idx));
}
const std::string get_column_name (
unsigned long idx
) const
{
// make sure requires clause is not broken
DLIB_ASSERT(idx < get_num_columns(),
"\t std::string statement::get_column_name()"
<< "\n\t Invalid column index."
<< "\n\t idx: " << idx
<< "\n\t this: " << this
);
unsigned long get_max_parameter_id (
) const
{
return SQLITE_LIMIT_VARIABLE_NUMBER;
}
return std::string(sqlite3_column_name(stmt,idx));
}
unsigned long get_parameter_id (
const std::string& name
) const
{
return sqlite3_bind_parameter_index(stmt, name.c_str());
}
unsigned long get_max_parameter_id (
) const
{
return SQLITE_LIMIT_VARIABLE_NUMBER;
}
void bind_blob (
unsigned long parameter_id,
const std::vector<char>& item
)
{
// make sure requires clause is not broken
DLIB_ASSERT(1 <= parameter_id && parameter_id <= get_max_parameter_id(),
"\t void sqlite::statement::bind_blob()"
<< "\n\t Invalid parameter id."
<< "\n\t parameter_id: " << parameter_id
<< "\n\t get_max_parameter_id(): " << get_max_parameter_id()
<< "\n\t this: " << this
);
unsigned long get_parameter_id (
const std::string& name
) const
{
return sqlite3_bind_parameter_index(stmt, name.c_str());
}
reset();
int status = sqlite3_bind_blob(stmt, parameter_id, &item[0], item.size(), SQLITE_TRANSIENT);
void bind_blob (
unsigned long parameter_id,
const std::vector<char>& item
)
{
// make sure requires clause is not broken
DLIB_ASSERT(1 <= parameter_id && parameter_id <= get_max_parameter_id(),
"\t void statement::bind_blob()"
<< "\n\t Invalid parameter id."
<< "\n\t parameter_id: " << parameter_id
<< "\n\t get_max_parameter_id(): " << get_max_parameter_id()
<< "\n\t this: " << this
);
if (status != SQLITE_OK)
{
throw sqlite_error(sqlite3_errmsg(db.get()));
}
}
reset();
int status = sqlite3_bind_blob(stmt, parameter_id, &item[0], item.size(), SQLITE_TRANSIENT);
template <typename T>
void bind_object (
unsigned long parameter_id,
const T& item
)
if (status != SQLITE_OK)
{
// make sure requires clause is not broken
DLIB_ASSERT(1 <= parameter_id && parameter_id <= get_max_parameter_id(),
"\t void sqlite::statement::bind_object()"
<< "\n\t Invalid parameter id."
<< "\n\t parameter_id: " << parameter_id
<< "\n\t get_max_parameter_id(): " << get_max_parameter_id()
<< "\n\t this: " << this
);
throw sqlite_error(sqlite3_errmsg(db.get()));
}
}
reset();
std::ostringstream sout;
serialize(item, sout);
const std::string& str = sout.str();
int status = sqlite3_bind_blob(stmt, parameter_id, str.data(), str.size(), SQLITE_TRANSIENT);
template <typename T>
void bind_object (
unsigned long parameter_id,
const T& item
)
{
// make sure requires clause is not broken
DLIB_ASSERT(1 <= parameter_id && parameter_id <= get_max_parameter_id(),
"\t void statement::bind_object()"
<< "\n\t Invalid parameter id."
<< "\n\t parameter_id: " << parameter_id
<< "\n\t get_max_parameter_id(): " << get_max_parameter_id()
<< "\n\t this: " << this
);
if (status != SQLITE_OK)
{
throw sqlite_error(sqlite3_errmsg(db.get()));
}
}
reset();
std::ostringstream sout;
serialize(item, sout);
const std::string& str = sout.str();
int status = sqlite3_bind_blob(stmt, parameter_id, str.data(), str.size(), SQLITE_TRANSIENT);
void bind_double (
unsigned long parameter_id,
const double& item
)
if (status != SQLITE_OK)
{
// make sure requires clause is not broken
DLIB_ASSERT(1 <= parameter_id && parameter_id <= get_max_parameter_id(),
"\t void sqlite::statement::bind_double()"
<< "\n\t Invalid parameter id."
<< "\n\t parameter_id: " << parameter_id
<< "\n\t get_max_parameter_id(): " << get_max_parameter_id()
<< "\n\t this: " << this
);
throw sqlite_error(sqlite3_errmsg(db.get()));
}
}
reset();
int status = sqlite3_bind_double(stmt, parameter_id, item);
void bind_double (
unsigned long parameter_id,
const double& item
)
{
// make sure requires clause is not broken
DLIB_ASSERT(1 <= parameter_id && parameter_id <= get_max_parameter_id(),
"\t void statement::bind_double()"
<< "\n\t Invalid parameter id."
<< "\n\t parameter_id: " << parameter_id
<< "\n\t get_max_parameter_id(): " << get_max_parameter_id()
<< "\n\t this: " << this
);
if (status != SQLITE_OK)
{
throw sqlite_error(sqlite3_errmsg(db.get()));
}
}
reset();
int status = sqlite3_bind_double(stmt, parameter_id, item);
void bind_int (
unsigned long parameter_id,
const int& item
)
if (status != SQLITE_OK)
{
// make sure requires clause is not broken
DLIB_ASSERT(1 <= parameter_id && parameter_id <= get_max_parameter_id(),
"\t void sqlite::statement::bind_int()"
<< "\n\t Invalid parameter id."
<< "\n\t parameter_id: " << parameter_id
<< "\n\t get_max_parameter_id(): " << get_max_parameter_id()
<< "\n\t this: " << this
);
throw sqlite_error(sqlite3_errmsg(db.get()));
}
}
reset();
int status = sqlite3_bind_int(stmt, parameter_id, item);
void bind_int (
unsigned long parameter_id,
const int& item
)
{
// make sure requires clause is not broken
DLIB_ASSERT(1 <= parameter_id && parameter_id <= get_max_parameter_id(),
"\t void statement::bind_int()"
<< "\n\t Invalid parameter id."
<< "\n\t parameter_id: " << parameter_id
<< "\n\t get_max_parameter_id(): " << get_max_parameter_id()
<< "\n\t this: " << this
);
if (status != SQLITE_OK)
{
throw sqlite_error(sqlite3_errmsg(db.get()));
}
}
reset();
int status = sqlite3_bind_int(stmt, parameter_id, item);
void bind_int64 (
unsigned long parameter_id,
const int64& item
)
if (status != SQLITE_OK)
{
// make sure requires clause is not broken
DLIB_ASSERT(1 <= parameter_id && parameter_id <= get_max_parameter_id(),
"\t void sqlite::statement::bind_int64()"
<< "\n\t Invalid parameter id."
<< "\n\t parameter_id: " << parameter_id
<< "\n\t get_max_parameter_id(): " << get_max_parameter_id()
<< "\n\t this: " << this
);
throw sqlite_error(sqlite3_errmsg(db.get()));
}
}
reset();
int status = sqlite3_bind_int64(stmt, parameter_id, item);
void bind_int64 (
unsigned long parameter_id,
const int64& item
)
{
// make sure requires clause is not broken
DLIB_ASSERT(1 <= parameter_id && parameter_id <= get_max_parameter_id(),
"\t void statement::bind_int64()"
<< "\n\t Invalid parameter id."
<< "\n\t parameter_id: " << parameter_id
<< "\n\t get_max_parameter_id(): " << get_max_parameter_id()
<< "\n\t this: " << this
);
if (status != SQLITE_OK)
{
throw sqlite_error(sqlite3_errmsg(db.get()));
}
}
reset();
int status = sqlite3_bind_int64(stmt, parameter_id, item);
void bind_null (
unsigned long parameter_id
)
if (status != SQLITE_OK)
{
// make sure requires clause is not broken
DLIB_ASSERT(1 <= parameter_id && parameter_id <= get_max_parameter_id(),
"\t void sqlite::statement::bind_null()"
<< "\n\t Invalid parameter id."
<< "\n\t parameter_id: " << parameter_id
<< "\n\t get_max_parameter_id(): " << get_max_parameter_id()
<< "\n\t this: " << this
);
throw sqlite_error(sqlite3_errmsg(db.get()));
}
}
reset();
int status = sqlite3_bind_null(stmt, parameter_id);
void bind_null (
unsigned long parameter_id
)
{
// make sure requires clause is not broken
DLIB_ASSERT(1 <= parameter_id && parameter_id <= get_max_parameter_id(),
"\t void statement::bind_null()"
<< "\n\t Invalid parameter id."
<< "\n\t parameter_id: " << parameter_id
<< "\n\t get_max_parameter_id(): " << get_max_parameter_id()
<< "\n\t this: " << this
);
if (status != SQLITE_OK)
{
throw sqlite_error(sqlite3_errmsg(db.get()));
}
}
reset();
int status = sqlite3_bind_null(stmt, parameter_id);
void bind_text (
unsigned long parameter_id,
const std::string& item
)
if (status != SQLITE_OK)
{
// make sure requires clause is not broken
DLIB_ASSERT(1 <= parameter_id && parameter_id <= get_max_parameter_id(),
"\t void sqlite::statement::bind_text()"
<< "\n\t Invalid parameter id."
<< "\n\t parameter_id: " << parameter_id
<< "\n\t get_max_parameter_id(): " << get_max_parameter_id()
<< "\n\t this: " << this
);
throw sqlite_error(sqlite3_errmsg(db.get()));
}
}
reset();
int status = sqlite3_bind_text(stmt, parameter_id, item.c_str(), -1, SQLITE_TRANSIENT);
void bind_text (
unsigned long parameter_id,
const std::string& item
)
{
// make sure requires clause is not broken
DLIB_ASSERT(1 <= parameter_id && parameter_id <= get_max_parameter_id(),
"\t void statement::bind_text()"
<< "\n\t Invalid parameter id."
<< "\n\t parameter_id: " << parameter_id
<< "\n\t get_max_parameter_id(): " << get_max_parameter_id()
<< "\n\t this: " << this
);
if (status != SQLITE_OK)
{
throw sqlite_error(sqlite3_errmsg(db.get()));
}
reset();
int status = sqlite3_bind_text(stmt, parameter_id, item.c_str(), -1, SQLITE_TRANSIENT);
if (status != SQLITE_OK)
{
throw sqlite_error(sqlite3_errmsg(db.get()));
}
}
private:
private:
void reset()
void reset()
{
if (needs_reset)
{
if (needs_reset)
if (sqlite3_reset(stmt) != SQLITE_OK)
{
if (sqlite3_reset(stmt) != SQLITE_OK)
{
step_status = SQLITE_DONE;
throw sqlite_error(sqlite3_errmsg(db.get()));
}
needs_reset = false;
step_status = SQLITE_DONE;
at_first_step = true;
throw sqlite_error(sqlite3_errmsg(db.get()));
}
needs_reset = false;
step_status = SQLITE_DONE;
at_first_step = true;
}
}
bool needs_reset; // true if sqlite3_step() has been called more recently than sqlite3_reset()
int step_status;
bool at_first_step;
bool needs_reset; // true if sqlite3_step() has been called more recently than sqlite3_reset()
int step_status;
bool at_first_step;
shared_ptr<sqlite3> db;
sqlite3_stmt* stmt;
std::string sql_string;
};
shared_ptr<sqlite3> db;
sqlite3_stmt* stmt;
std::string sql_string;
};
// ------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------------
void database::
exec (
const std::string& sql_statement
)
{
// make sure requires clause is not broken
DLIB_ASSERT(is_open() == true,
"\t void sqlite::database::exec()"
<< "\n\t The database must be opened before calling this routine."
<< "\n\t this: " << this
);
void database::
exec (
const std::string& sql_statement
)
{
// make sure requires clause is not broken
DLIB_ASSERT(is_open() == true,
"\t void database::exec()"
<< "\n\t The database must be opened before calling this routine."
<< "\n\t this: " << this
);
statement(*this, sql_statement).exec();
}
statement(*this, sql_statement).exec();
}
// ------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------------
}
}
#endif // DLIB_SQLiTE_H_
......
......@@ -14,430 +14,427 @@
namespace dlib
{
namespace sqlite
// ----------------------------------------------------------------------------------------
struct sqlite_error : public error
{
/*!
WHAT THIS OBJECT REPRESENTS
This is the exception object used by the SQLite tools to indicate
that an error has occurred. An of the functions defined in this
file might throw this exception.
!*/
};
// ------------------------------------------------------------------------------------
struct sqlite_error : public error
{
/*!
WHAT THIS OBJECT REPRESENTS
This is the exception object used by the SQLite tools to indicate
that an error has occurred. An of the functions defined in this
file might throw this exception.
!*/
};
// ------------------------------------------------------------------------------------
class database : noncopyable
{
/*!
WHAT THIS OBJECT REPRESENTS
This object is a C++ wrapper around a SQLite database connection
handle and therefore represents a SQLite database file.
Note that this wrapper is targeted at SQLite Version 3.
Note also that whenever SQLite indicates an error has occurred
this object will throw the sqlite_error exception.
!*/
public:
database(
);
/*!
ensures
- #is_open() == false
!*/
database (
const std::string& file
);
/*!
ensures
- opens the indicated database file or creates a new
database with the given name if one doesn't already exist.
- #get_database_filename() == file
- #is_open() == true
!*/
~database (
);
/*!
ensures
- safely disposes of any SQLite database connection. If
any statement objects still exist which reference this database
then the SQLite database connection won't be fully closed
until those statement objects are also destroyed. This allows
for any destruction order between database and statement objects.
!*/
void open (
const std::string& file
);
/*!
ensures
- opens the indicated database file or creates a new
database with the given name if one doesn't already exist.
- #get_database_filename() == file
- #is_open() == true
- safely disposes of any previous SQLite database connection. If
any statement objects still exist which reference this database
then the SQLite database connection won't be fully closed
until those statement objects are also destroyed.
!*/
bool is_open (
) const;
/*!
ensures
- if (this object has an open connection to a SQLite database) then
- returns true
- else
- returns false
!*/
const std::string& get_database_filename (
) const;
/*!
requires
- is_open() == true
ensures
- returns the name of the SQLite database file this object
currently has open.
!*/
void exec (
const std::string& sql_statement
);
/*!
requires
- is_open() == true
ensures
- executes the supplied SQL statement against this database
!*/
};
// ------------------------------------------------------------------------------------
class statement : noncopyable
{
/*!
WHAT THIS OBJECT REPRESENTS
This object represents a SQL statement which can be executed
against a database object. In particular, this object is a
C++ wrapper around a SQLite prepared statement.
Note that whenever SQLite indicates an error has occurred this
object will throw the sqlite_error exception.
BINDABLE SQL PARAMETERS
Sometimes you want to execute a bunch of very similar SQL statements.
For example, you might need to execute many insert statements where each
statement changes only the value of a field. Since it is somewhat
costly to construct a statement object for each SQL operation, SQLite
supports defining bindable parameters for a statement object. This allows
you to reuse the same statement object.
Therefore, in SQL statements used with SQLite, wherever it is valid to
include a string literal, one can use a parameter in one of the following
forms:
?
?NNN
:AAA
$AAA
@AAA
In the examples above, NNN is an integer value and AAA is an identifier. A
parameter initially has a value of NULL. You can use the bind_*() routines
to attach values to the parameters. Each call to a bind_*() routine overrides
prior bindings on the same parameter.
Each SQL parameter has a numeric ID which is used to reference it when invoking
a bind_*() routine. The leftmost SQL parameter in a statement has an index of 1,
the next parameter has an index of 2, and so on, except when the following rules
apply. When the same named SQL parameter is used more than once, second and
subsequent occurrences have the same index as the first occurrence. The index
for named parameters can be looked up using the get_parameter_id() method if desired.
The index for "?NNN" parameters is the value of NNN. The NNN value must be between
1 and get_max_parameter_id().
!*/
public:
statement (
database& db,
const std::string sql_statement
);
/*!
requires
- db.is_open() == true
ensures
- The given SQL statement can be executed against the given
database by calling exec().
- #get_sql_string() == sql_statement
!*/
~statement(
);
/*!
ensures
- any resources associated with this object have been freed.
!*/
const std::string& get_sql_string (
) const;
/*!
ensures
- returns a copy of the SQL statement used to create this statement object.
!*/
void exec(
);
/*!
ensures
- #get_num_columns() == 0
- executes the SQL statement get_sql_string() against the database
given to this object's constructor.
- If this was a select statement then you can obtain the resulting
rows by calling move_next() and using the get_column_by_*() member
functions.
!*/
// ----------------------------
bool move_next (
);
/*!
ensures
- if (there is a result row for this query) then
- #get_num_columns() == the number of columns in the result row.
- The get_column_by_*() routines can be used to access the elements
of the row data.
- returns true
- else
- returns false
- #get_num_columns() == 0
!*/
unsigned long get_num_columns(
) const;
/*!
ensures
- returns the number of columns of data available via the get_column_as_*()
routines.
!*/
const std::vector<char> get_column_as_blob (
unsigned long idx
) const;
/*!
requires
- idx < get_num_columns()
ensures
- returns the contents of the idx-th column as a binary BLOB.
!*/
template <
typename T
>
void get_column_as_object (
unsigned long idx,
T& item
) const;
/*!
requires
- idx < get_num_columns()
- item is deserializable
(i.e. Calling deserialize(item, some_input_stream) reads an item
of type T from the some_input_stream stream)
ensures
- gets the contents of the idx-th column as a binary BLOB and then
deserializes it into item.
!*/
const std::string get_column_as_text (
unsigned long idx
) const;
/*!
requires
- idx < get_num_columns()
ensures
- returns the contents of the idx-th column as a text string.
!*/
double get_column_as_double (
unsigned long idx
) const;
/*!
requires
- idx < get_num_columns()
ensures
- returns the contents of the idx-th column as a double.
!*/
int get_column_as_int (
unsigned long idx
) const;
/*!
requires
- idx < get_num_columns()
ensures
- returns the contents of the idx-th column as an int.
!*/
int64 get_column_as_int64 (
unsigned long idx
) const;
/*!
requires
- idx < get_num_columns()
ensures
- returns the contents of the idx-th column as a 64bit int.
!*/
const std::string get_column_name (
unsigned long idx
) const;
/*!
requires
- idx < get_num_columns()
ensures
- returns the name of the idx-th column. In particular:
The name of a result column is the value of the "AS" clause for
that column, if there is an AS clause. If there is no AS clause
then the name of the column is unspecified and may change from
one release of SQLite to the next.
!*/
// ----------------------------
unsigned long get_max_parameter_id (
) const;
/*!
ensures
- returns the max parameter ID value which can be used with the
bind_() member functions defined below.
- In SQLite, the default value of this limit is usually 999.
!*/
unsigned long get_parameter_id (
const std::string& name
) const;
/*!
ensures
- if (This SQL statement contains a SQL parameter with the given name) then
- returns the parameter_id number which can be used in the bind_*()
member functions defined below.
- else
- returns 0
!*/
void bind_blob (
unsigned long parameter_id,
const std::vector<char>& item
);
/*!
requires
- 1 <= parameter_id <= get_max_parameter_id()
ensures
- #get_num_columns() == 0
- binds the value of item into the SQL parameter indicated by
parameter_id.
!*/
template <
typename T
>
void bind_object (
unsigned long parameter_id,
const T& item
);
/*!
requires
- 1 <= parameter_id <= get_max_parameter_id()
- item is serializable
(i.e. Calling serialize(item, some_output_stream) writes an item
of type T to the some_output_stream stream)
ensures
- #get_num_columns() == 0
- binds the value of item into the SQL parameter indicated by
parameter_id. This is performed by serializing item and then
binding it as a binary BLOB.
!*/
void bind_double (
unsigned long parameter_id,
const double& item
);
/*!
requires
- 1 <= parameter_id <= get_max_parameter_id()
ensures
- #get_num_columns() == 0
- binds the value of item into the SQL parameter indicated by
parameter_id.
!*/
void bind_int (
unsigned long parameter_id,
const int& item
);
/*!
requires
- 1 <= parameter_id <= get_max_parameter_id()
ensures
- #get_num_columns() == 0
- binds the value of item into the SQL parameter indicated by
parameter_id.
!*/
void bind_int64 (
unsigned long parameter_id,
const int64& item
);
/*!
requires
- 1 <= parameter_id <= get_max_parameter_id()
ensures
- #get_num_columns() == 0
- binds the value of item into the SQL parameter indicated by
parameter_id.
!*/
void bind_null (
unsigned long parameter_id
);
/*!
requires
- 1 <= parameter_id <= get_max_parameter_id()
ensures
- #get_num_columns() == 0
- binds a NULL to the SQL parameter indicated by parameter_id.
!*/
void bind_text (
unsigned long parameter_id,
const std::string& item
);
/*!
requires
- 1 <= parameter_id <= get_max_parameter_id()
ensures
- #get_num_columns() == 0
- binds the value of item into the SQL parameter indicated by
parameter_id.
!*/
// ----------------------------------------------------------------------------------------
};
class database : noncopyable
{
/*!
WHAT THIS OBJECT REPRESENTS
This object is a C++ wrapper around a SQLite database connection
handle and therefore represents a SQLite database file.
Note that this wrapper is targeted at SQLite Version 3.
Note also that whenever SQLite indicates an error has occurred
this object will throw the sqlite_error exception.
!*/
public:
database(
);
/*!
ensures
- #is_open() == false
!*/
database (
const std::string& file
);
/*!
ensures
- opens the indicated database file or creates a new
database with the given name if one doesn't already exist.
- #get_database_filename() == file
- #is_open() == true
!*/
~database (
);
/*!
ensures
- safely disposes of any SQLite database connection. If
any statement objects still exist which reference this database
then the SQLite database connection won't be fully closed
until those statement objects are also destroyed. This allows
for any destruction order between database and statement objects.
!*/
void open (
const std::string& file
);
/*!
ensures
- opens the indicated database file or creates a new
database with the given name if one doesn't already exist.
- #get_database_filename() == file
- #is_open() == true
- safely disposes of any previous SQLite database connection. If
any statement objects still exist which reference this database
then the SQLite database connection won't be fully closed
until those statement objects are also destroyed.
!*/
bool is_open (
) const;
/*!
ensures
- if (this object has an open connection to a SQLite database) then
- returns true
- else
- returns false
!*/
const std::string& get_database_filename (
) const;
/*!
requires
- is_open() == true
ensures
- returns the name of the SQLite database file this object
currently has open.
!*/
void exec (
const std::string& sql_statement
);
/*!
requires
- is_open() == true
ensures
- executes the supplied SQL statement against this database
!*/
};
// ----------------------------------------------------------------------------------------
// ------------------------------------------------------------------------------------
class statement : noncopyable
{
/*!
WHAT THIS OBJECT REPRESENTS
This object represents a SQL statement which can be executed
against a database object. In particular, this object is a
C++ wrapper around a SQLite prepared statement.
Note that whenever SQLite indicates an error has occurred this
object will throw the sqlite_error exception.
BINDABLE SQL PARAMETERS
Sometimes you want to execute a bunch of very similar SQL statements.
For example, you might need to execute many insert statements where each
statement changes only the value of a field. Since it is somewhat
costly to construct a statement object for each SQL operation, SQLite
supports defining bindable parameters for a statement object. This allows
you to reuse the same statement object.
Therefore, in SQL statements used with SQLite, wherever it is valid to
include a string literal, one can use a parameter in one of the following
forms:
?
?NNN
:AAA
$AAA
@AAA
In the examples above, NNN is an integer value and AAA is an identifier. A
parameter initially has a value of NULL. You can use the bind_*() routines
to attach values to the parameters. Each call to a bind_*() routine overrides
prior bindings on the same parameter.
Each SQL parameter has a numeric ID which is used to reference it when invoking
a bind_*() routine. The leftmost SQL parameter in a statement has an index of 1,
the next parameter has an index of 2, and so on, except when the following rules
apply. When the same named SQL parameter is used more than once, second and
subsequent occurrences have the same index as the first occurrence. The index
for named parameters can be looked up using the get_parameter_id() method if desired.
The index for "?NNN" parameters is the value of NNN. The NNN value must be between
1 and get_max_parameter_id().
!*/
public:
statement (
database& db,
const std::string sql_statement
);
/*!
requires
- db.is_open() == true
ensures
- The given SQL statement can be executed against the given
database by calling exec().
- #get_sql_string() == sql_statement
!*/
~statement(
);
/*!
ensures
- any resources associated with this object have been freed.
!*/
const std::string& get_sql_string (
) const;
/*!
ensures
- returns a copy of the SQL statement used to create this statement object.
!*/
void exec(
);
/*!
ensures
- #get_num_columns() == 0
- executes the SQL statement get_sql_string() against the database
given to this object's constructor.
- If this was a select statement then you can obtain the resulting
rows by calling move_next() and using the get_column_by_*() member
functions.
!*/
// ----------------------------
bool move_next (
);
/*!
ensures
- if (there is a result row for this query) then
- #get_num_columns() == the number of columns in the result row.
- The get_column_by_*() routines can be used to access the elements
of the row data.
- returns true
- else
- returns false
- #get_num_columns() == 0
!*/
unsigned long get_num_columns(
) const;
/*!
ensures
- returns the number of columns of data available via the get_column_as_*()
routines.
!*/
const std::vector<char> get_column_as_blob (
unsigned long idx
) const;
/*!
requires
- idx < get_num_columns()
ensures
- returns the contents of the idx-th column as a binary BLOB.
!*/
template <
typename T
>
void get_column_as_object (
unsigned long idx,
T& item
) const;
/*!
requires
- idx < get_num_columns()
- item is deserializable
(i.e. Calling deserialize(item, some_input_stream) reads an item
of type T from the some_input_stream stream)
ensures
- gets the contents of the idx-th column as a binary BLOB and then
deserializes it into item.
!*/
const std::string get_column_as_text (
unsigned long idx
) const;
/*!
requires
- idx < get_num_columns()
ensures
- returns the contents of the idx-th column as a text string.
!*/
double get_column_as_double (
unsigned long idx
) const;
/*!
requires
- idx < get_num_columns()
ensures
- returns the contents of the idx-th column as a double.
!*/
int get_column_as_int (
unsigned long idx
) const;
/*!
requires
- idx < get_num_columns()
ensures
- returns the contents of the idx-th column as an int.
!*/
int64 get_column_as_int64 (
unsigned long idx
) const;
/*!
requires
- idx < get_num_columns()
ensures
- returns the contents of the idx-th column as a 64bit int.
!*/
const std::string get_column_name (
unsigned long idx
) const;
/*!
requires
- idx < get_num_columns()
ensures
- returns the name of the idx-th column. In particular:
The name of a result column is the value of the "AS" clause for
that column, if there is an AS clause. If there is no AS clause
then the name of the column is unspecified and may change from
one release of SQLite to the next.
!*/
// ----------------------------
unsigned long get_max_parameter_id (
) const;
/*!
ensures
- returns the max parameter ID value which can be used with the
bind_() member functions defined below.
- In SQLite, the default value of this limit is usually 999.
!*/
unsigned long get_parameter_id (
const std::string& name
) const;
/*!
ensures
- if (This SQL statement contains a SQL parameter with the given name) then
- returns the parameter_id number which can be used in the bind_*()
member functions defined below.
- else
- returns 0
!*/
void bind_blob (
unsigned long parameter_id,
const std::vector<char>& item
);
/*!
requires
- 1 <= parameter_id <= get_max_parameter_id()
ensures
- #get_num_columns() == 0
- binds the value of item into the SQL parameter indicated by
parameter_id.
!*/
template <
typename T
>
void bind_object (
unsigned long parameter_id,
const T& item
);
/*!
requires
- 1 <= parameter_id <= get_max_parameter_id()
- item is serializable
(i.e. Calling serialize(item, some_output_stream) writes an item
of type T to the some_output_stream stream)
ensures
- #get_num_columns() == 0
- binds the value of item into the SQL parameter indicated by
parameter_id. This is performed by serializing item and then
binding it as a binary BLOB.
!*/
void bind_double (
unsigned long parameter_id,
const double& item
);
/*!
requires
- 1 <= parameter_id <= get_max_parameter_id()
ensures
- #get_num_columns() == 0
- binds the value of item into the SQL parameter indicated by
parameter_id.
!*/
void bind_int (
unsigned long parameter_id,
const int& item
);
/*!
requires
- 1 <= parameter_id <= get_max_parameter_id()
ensures
- #get_num_columns() == 0
- binds the value of item into the SQL parameter indicated by
parameter_id.
!*/
void bind_int64 (
unsigned long parameter_id,
const int64& item
);
/*!
requires
- 1 <= parameter_id <= get_max_parameter_id()
ensures
- #get_num_columns() == 0
- binds the value of item into the SQL parameter indicated by
parameter_id.
!*/
void bind_null (
unsigned long parameter_id
);
/*!
requires
- 1 <= parameter_id <= get_max_parameter_id()
ensures
- #get_num_columns() == 0
- binds a NULL to the SQL parameter indicated by parameter_id.
!*/
void bind_text (
unsigned long parameter_id,
const std::string& item
);
/*!
requires
- 1 <= parameter_id <= get_max_parameter_id()
ensures
- #get_num_columns() == 0
- binds the value of item into the SQL parameter indicated by
parameter_id.
!*/
};
// ----------------------------------------------------------------------------------------
}
}
#endif // DLIB_SQLiTE_ABSTRACT_H_
......
......@@ -11,181 +11,178 @@
namespace dlib
{
namespace sqlite
{
class transaction : noncopyable
class transaction : noncopyable
{
public:
transaction (
database& db_
) :
db(db_),
committed(false)
{
public:
transaction (
database& db_
) :
db(db_),
committed(false)
{
db.exec("begin transaction");
}
db.exec("begin transaction");
}
void commit ()
void commit ()
{
if (!committed)
{
if (!committed)
{
committed = true;
db.exec("commit");
}
committed = true;
db.exec("commit");
}
}
~transaction()
{
if (!committed)
db.exec("rollback");
}
~transaction()
{
if (!committed)
db.exec("rollback");
}
private:
database& db;
bool committed;
private:
database& db;
bool committed;
};
};
// ------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
template <
typename T
>
void query_object (
database& db,
const std::string& query,
T& item
)
template <
typename T
>
void query_object (
database& db,
const std::string& query,
T& item
)
{
statement st(db, query);
st.exec();
if (st.move_next() && st.get_num_columns() == 1)
{
statement st(db, query);
st.exec();
if (st.move_next() && st.get_num_columns() == 1)
{
st.get_column_as_object(0,item);
if (st.move_next())
throw sqlite_error("query doesn't result in exactly 1 element");
}
else
{
st.get_column_as_object(0,item);
if (st.move_next())
throw sqlite_error("query doesn't result in exactly 1 element");
}
}
else
{
throw sqlite_error("query doesn't result in exactly 1 element");
}
}
// ------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
inline std::string query_text (
database& db,
const std::string& query
)
inline std::string query_text (
database& db,
const std::string& query
)
{
statement st(db, query);
st.exec();
if (st.move_next() && st.get_num_columns() == 1)
{
statement st(db, query);
st.exec();
if (st.move_next() && st.get_num_columns() == 1)
{
const std::string& temp = st.get_column_as_text(0);
if (st.move_next())
throw sqlite_error("query doesn't result in exactly 1 element");
return temp;
}
else
{
const std::string& temp = st.get_column_as_text(0);
if (st.move_next())
throw sqlite_error("query doesn't result in exactly 1 element");
}
return temp;
}
else
{
throw sqlite_error("query doesn't result in exactly 1 element");
}
}
// ------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
inline double query_double (
database& db,
const std::string& query
)
inline double query_double (
database& db,
const std::string& query
)
{
statement st(db, query);
st.exec();
if (st.move_next() && st.get_num_columns() == 1)
{
statement st(db, query);
st.exec();
if (st.move_next() && st.get_num_columns() == 1)
{
double temp = st.get_column_as_double(0);
if (st.move_next())
throw sqlite_error("query doesn't result in exactly 1 element");
return temp;
}
else
{
double temp = st.get_column_as_double(0);
if (st.move_next())
throw sqlite_error("query doesn't result in exactly 1 element");
}
return temp;
}
else
{
throw sqlite_error("query doesn't result in exactly 1 element");
}
}
// ------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
inline int query_int (
database& db,
const std::string& query
)
inline int query_int (
database& db,
const std::string& query
)
{
statement st(db, query);
st.exec();
if (st.move_next() && st.get_num_columns() == 1)
{
statement st(db, query);
st.exec();
if (st.move_next() && st.get_num_columns() == 1)
{
int temp = st.get_column_as_int(0);
if (st.move_next())
throw sqlite_error("query doesn't result in exactly 1 element");
return temp;
}
else
{
int temp = st.get_column_as_int(0);
if (st.move_next())
throw sqlite_error("query doesn't result in exactly 1 element");
}
return temp;
}
else
{
throw sqlite_error("query doesn't result in exactly 1 element");
}
}
// ------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
inline int64 query_int64 (
database& db,
const std::string& query
)
inline int64 query_int64 (
database& db,
const std::string& query
)
{
statement st(db, query);
st.exec();
if (st.move_next() && st.get_num_columns() == 1)
{
statement st(db, query);
st.exec();
if (st.move_next() && st.get_num_columns() == 1)
{
int64 temp = st.get_column_as_int64(0);
if (st.move_next())
throw sqlite_error("query doesn't result in exactly 1 element");
return temp;
}
else
{
int64 temp = st.get_column_as_int64(0);
if (st.move_next())
throw sqlite_error("query doesn't result in exactly 1 element");
}
return temp;
}
else
{
throw sqlite_error("query doesn't result in exactly 1 element");
}
}
// ------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
inline const std::vector<char> query_blob (
database& db,
const std::string& query
)
inline const std::vector<char> query_blob (
database& db,
const std::string& query
)
{
statement st(db, query);
st.exec();
if (st.move_next() && st.get_num_columns() == 1)
{
statement st(db, query);
st.exec();
if (st.move_next() && st.get_num_columns() == 1)
{
const std::vector<char>& temp = st.get_column_as_blob(0);
if (st.move_next())
throw sqlite_error("query doesn't result in exactly 1 element");
return temp;
}
else
{
const std::vector<char>& temp = st.get_column_as_blob(0);
if (st.move_next())
throw sqlite_error("query doesn't result in exactly 1 element");
}
return temp;
}
else
{
throw sqlite_error("query doesn't result in exactly 1 element");
}
}
// ------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
}
}
#endif // DLIB_SQLiTE_TOOLS_H_
......
......@@ -10,156 +10,153 @@
namespace dlib
{
namespace sqlite
{
class transaction : noncopyable
{
/*!
WHAT THIS OBJECT REPRESENTS
This object is a tool for creating exception safe
database transactions.
!*/
public:
transaction (
database& db
);
/*!
ensures
- Begins a database transaction which will be rolled back
if commit() isn't called eventually.
- In particular, performs: db.exec("begin transaction");
!*/
void commit (
);
/*!
ensures
- if (commit() hasn't already been called) then
- Commits all changes made during this database transaction.
- In particular, performs: db.exec("commit");
- else
- does nothing
!*/
~transaction(
);
/*!
ensures
- if (commit() was never called) then
- rolls back any changes made to the database during this transaction.
- In particular, performs: db.exec("rollback");
- else
- does nothing
!*/
};
// ------------------------------------------------------------------------------------
template <
typename T
>
void query_object (
database& db,
const std::string& query,
T& item
);
class transaction : noncopyable
{
/*!
ensures
- executes the given SQL query against db. If the query results in a
single row and column being returned then the data in the column is
interpreted as a binary BLOB and deserialized into item.
throws
- sqlite_error or serialization_error if an error occurs which prevents
this operation from succeeding.
WHAT THIS OBJECT REPRESENTS
This object is a tool for creating exception safe
database transactions.
!*/
// ------------------------------------------------------------------------------------
std::string query_text (
database& db,
const std::string& query
public:
transaction (
database& db
);
/*!
ensures
- executes the given SQL query against db. If the query results in a
single row and column being returned then the data in the column is
converted to text and returned.
throws
- sqlite_error if an error occurs which prevents this operation from
succeeding.
- Begins a database transaction which will be rolled back
if commit() isn't called eventually.
- In particular, performs: db.exec("begin transaction");
!*/
// ------------------------------------------------------------------------------------
double query_double (
database& db,
const std::string& query
void commit (
);
/*!
ensures
- executes the given SQL query against db. If the query results in a
single row and column being returned then the data in the column is
converted to a double and returned.
throws
- sqlite_error if an error occurs which prevents this operation from
succeeding.
- if (commit() hasn't already been called) then
- Commits all changes made during this database transaction.
- In particular, performs: db.exec("commit");
- else
- does nothing
!*/
// ------------------------------------------------------------------------------------
int query_int (
database& db,
const std::string& query
~transaction(
);
/*!
ensures
- executes the given SQL query against db. If the query results in a
single row and column being returned then the data in the column is
converted to an int and returned.
throws
- sqlite_error if an error occurs which prevents this operation from
succeeding.
- if (commit() was never called) then
- rolls back any changes made to the database during this transaction.
- In particular, performs: db.exec("rollback");
- else
- does nothing
!*/
// ------------------------------------------------------------------------------------
};
int64 query_int64 (
database& db,
const std::string& query
);
/*!
ensures
- executes the given SQL query against db. If the query results in a
single row and column being returned then the data in the column is
converted to an int64 and returned.
throws
- sqlite_error if an error occurs which prevents this operation from
succeeding.
!*/
// ----------------------------------------------------------------------------------------
// ------------------------------------------------------------------------------------
template <
typename T
>
void query_object (
database& db,
const std::string& query,
T& item
);
/*!
ensures
- executes the given SQL query against db. If the query results in a
single row and column being returned then the data in the column is
interpreted as a binary BLOB and deserialized into item.
throws
- sqlite_error or serialization_error if an error occurs which prevents
this operation from succeeding.
!*/
const std::vector<char> query_blob (
database& db,
const std::string& query
);
/*!
ensures
- executes the given SQL query against db. If the query results in a
single row and column being returned then the data in the column is
returned as a binary BLOB.
throws
- sqlite_error if an error occurs which prevents this operation from
succeeding.
!*/
// ----------------------------------------------------------------------------------------
std::string query_text (
database& db,
const std::string& query
);
/*!
ensures
- executes the given SQL query against db. If the query results in a
single row and column being returned then the data in the column is
converted to text and returned.
throws
- sqlite_error if an error occurs which prevents this operation from
succeeding.
!*/
// ----------------------------------------------------------------------------------------
double query_double (
database& db,
const std::string& query
);
/*!
ensures
- executes the given SQL query against db. If the query results in a
single row and column being returned then the data in the column is
converted to a double and returned.
throws
- sqlite_error if an error occurs which prevents this operation from
succeeding.
!*/
// ----------------------------------------------------------------------------------------
// ------------------------------------------------------------------------------------
int query_int (
database& db,
const std::string& query
);
/*!
ensures
- executes the given SQL query against db. If the query results in a
single row and column being returned then the data in the column is
converted to an int and returned.
throws
- sqlite_error if an error occurs which prevents this operation from
succeeding.
!*/
// ----------------------------------------------------------------------------------------
int64 query_int64 (
database& db,
const std::string& query
);
/*!
ensures
- executes the given SQL query against db. If the query results in a
single row and column being returned then the data in the column is
converted to an int64 and returned.
throws
- sqlite_error if an error occurs which prevents this operation from
succeeding.
!*/
// ----------------------------------------------------------------------------------------
const std::vector<char> query_blob (
database& db,
const std::string& query
);
/*!
ensures
- executes the given SQL query against db. If the query results in a
single row and column being returned then the data in the column is
returned as a binary BLOB.
throws
- sqlite_error if an error occurs which prevents this operation from
succeeding.
!*/
// ----------------------------------------------------------------------------------------
}
}
#endif // DLIB_SQLiTE_TOOLS_H_
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment