From 5dd91c7b80443c1f0e747088159c4d8b78d1856d Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Thu, 24 Dec 2015 04:13:24 +0000 Subject: SQLite files prefixed with sqlite- --- libsqlitepp/sqlite-connection.h | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 libsqlitepp/sqlite-connection.h (limited to 'libsqlitepp/sqlite-connection.h') diff --git a/libsqlitepp/sqlite-connection.h b/libsqlitepp/sqlite-connection.h new file mode 100644 index 0000000..9398ee8 --- /dev/null +++ b/libsqlitepp/sqlite-connection.h @@ -0,0 +1,41 @@ +#ifndef SQLITE_CONNECTION_H +#define SQLITE_CONNECTION_H + +#include +#include "sqlite-error.h" +#include + +namespace SQLite { + class Connection : public DB::Connection { + public: + Connection(const std::string & info); + ~Connection(); + + void finish() const override; + int beginTx() const override; + int commitTx() const override; + int rollbackTx() const override; + bool inTx() const override; + void ping() const override; + DB::BulkDeleteStyle bulkDeleteStyle() const override; + DB::BulkUpdateStyle bulkUpdateStyle() const override; + + DB::SelectCommand * newSelectCommand(const std::string & sql) const override; + DB::ModifyCommand * newModifyCommand(const std::string & sql) const override; + + void beginBulkUpload(const char *, const char *) const override; + void endBulkUpload(const char *) const override; + size_t bulkUploadData(const char *, size_t) const override; + + int64_t insertId() const override; + + sqlite3 * db; + + private: + mutable unsigned int txDepth; + mutable bool rolledback; + }; +} + +#endif + -- cgit v1.2.3