diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-04-30 00:27:27 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-04-30 00:27:27 +0100 |
commit | f634bafc38bb948e41f829b16f03e2f0b8ee8f93 (patch) | |
tree | c4f8ff17614b68531355e8047d81e96719101d10 /libsqlitepp/connection.h | |
parent | Ignore Vim swap files (diff) | |
download | libdbpp-sqlite-f634bafc38bb948e41f829b16f03e2f0b8ee8f93.tar.bz2 libdbpp-sqlite-f634bafc38bb948e41f829b16f03e2f0b8ee8f93.tar.xz libdbpp-sqlite-f634bafc38bb948e41f829b16f03e2f0b8ee8f93.zip |
Adds support for SQLite, SQLite mocking and some basic tests
Diffstat (limited to 'libsqlitepp/connection.h')
-rw-r--r-- | libsqlitepp/connection.h | 39 |
1 files changed, 39 insertions, 0 deletions
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 <sqlite3.h> + +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 + |