From 49286cb2d2987e4d2f6a07f6b9ed46d4de97d9ac Mon Sep 17 00:00:00 2001 From: randomdan Date: Sun, 18 Nov 2012 19:13:16 +0000 Subject: Add a basic MySQL connector, not fully functional, but will suffice for p2tv --- libmysqlpp/connection.h | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 libmysqlpp/connection.h (limited to 'libmysqlpp/connection.h') diff --git a/libmysqlpp/connection.h b/libmysqlpp/connection.h new file mode 100644 index 0000000..a88d758 --- /dev/null +++ b/libmysqlpp/connection.h @@ -0,0 +1,42 @@ +#ifndef MY_CONNECTION_H +#define MY_CONNECTION_H + +#include "../libdbpp/connection.h" +#include "error.h" +#include + +namespace MySQL { + 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; + + mutable MYSQL conn; + + private: + my_bool my_true; + + void checkResult(my_bool actual, my_bool expected) const; + mutable unsigned int txDepth; + mutable bool rolledback; + }; +} + +#endif + -- cgit v1.2.3