From b177499d168936da9e64a964beb22f6057880703 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Thu, 24 Dec 2015 04:00:01 +0000 Subject: PostgreSQL files prefixed with pq- --- libpqpp/pq-connection.h | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 libpqpp/pq-connection.h (limited to 'libpqpp/pq-connection.h') diff --git a/libpqpp/pq-connection.h b/libpqpp/pq-connection.h new file mode 100644 index 0000000..618c875 --- /dev/null +++ b/libpqpp/pq-connection.h @@ -0,0 +1,48 @@ +#ifndef PQ_CONNECTION_H +#define PQ_CONNECTION_H + +#include +#include +#include + +namespace PQ { + class DLL_PUBLIC 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; + void execute(const std::string & sql) 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; + + int64_t insertId() 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; + + PGresult * checkResult(PGresult * res, int expected, int alternative = -1) const; + void checkResultFree(PGresult * res, int expected, int alternative = -1) const; + + PGconn * conn; + + private: + static bool checkResultInt(PGresult * res, int expected, int alternative); + + mutable unsigned int txDepth; + mutable unsigned int pstmntNo; + mutable bool rolledback; + }; +} + +#endif + -- cgit v1.2.3