From f634bafc38bb948e41f829b16f03e2f0b8ee8f93 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Thu, 30 Apr 2015 00:27:27 +0100 Subject: Adds support for SQLite, SQLite mocking and some basic tests --- libsqlitepp/connection.h | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 libsqlitepp/connection.h (limited to 'libsqlitepp/connection.h') diff --git a/libsqlitepp/connection.h b/libsqlitepp/connection.h new file mode 100644 index 0000000..aa73036 --- /dev/null +++ b/libsqlitepp/connection.h @@ -0,0 +1,39 @@ +#ifndef SQLITE_CONNECTION_H +#define SQLITE_CONNECTION_H + +#include "../libdbpp/connection.h" +#include "error.h" +#include + +namespace SQLite { + class Connection : public DB::Connection { + public: + Connection(const std::string & info); + ~Connection(); + + void finish() const; + int beginTx() const; + int commitTx() const; + int rollbackTx() const; + bool inTx() const; + void ping() const; + DB::BulkDeleteStyle bulkDeleteStyle() const; + DB::BulkUpdateStyle bulkUpdateStyle() const; + + DB::SelectCommand * newSelectCommand(const std::string & sql) const; + DB::ModifyCommand * newModifyCommand(const std::string & sql) const; + + void beginBulkUpload(const char *, const char *) const; + void endBulkUpload(const char *) const; + size_t bulkUploadData(const char *, size_t) const; + + sqlite3 * db; + + private: + mutable unsigned int txDepth; + mutable bool rolledback; + }; +} + +#endif + -- cgit v1.2.3