summaryrefslogtreecommitdiff
path: root/libpqpp/modifycommand.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-12-24 04:00:01 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2015-12-24 04:00:01 +0000
commitb177499d168936da9e64a964beb22f6057880703 (patch)
treec093da732b44e713af9fad35ff70539455cc355a /libpqpp/modifycommand.cpp
parentUse parent glibmm (diff)
downloadlibdbpp-postgresql-b177499d168936da9e64a964beb22f6057880703.tar.bz2
libdbpp-postgresql-b177499d168936da9e64a964beb22f6057880703.tar.xz
libdbpp-postgresql-b177499d168936da9e64a964beb22f6057880703.zip
PostgreSQL files prefixed with pq-
Diffstat (limited to 'libpqpp/modifycommand.cpp')
-rw-r--r--libpqpp/modifycommand.cpp44
1 files changed, 0 insertions, 44 deletions
diff --git a/libpqpp/modifycommand.cpp b/libpqpp/modifycommand.cpp
deleted file mode 100644
index 460ec31..0000000
--- a/libpqpp/modifycommand.cpp
+++ /dev/null
@@ -1,44 +0,0 @@
-#include "modifycommand.h"
-#include "error.h"
-#include <stdlib.h>
-#include "connection.h"
-
-PQ::ModifyCommand::ModifyCommand(const Connection * conn, const std::string & sql, unsigned int no) :
- DB::Command(sql),
- DB::ModifyCommand(sql),
- PQ::Command(conn, sql, no),
- prepared(false)
-{
-}
-
-PQ::ModifyCommand::~ModifyCommand()
-{
-}
-
-void
-PQ::ModifyCommand::prepare() const
-{
- if (!prepared) {
- std::string psql;
- psql.reserve(sql.length() + 20);
- prepareSql(psql, sql);
- c->checkResultFree(PQprepare(
- c->conn, stmntName.c_str(), psql.c_str(), values.size(), NULL), PGRES_COMMAND_OK);
- prepared = true;
- }
-}
-
-unsigned int
-PQ::ModifyCommand::execute(bool anc)
-{
- prepare();
- PGresult * res = PQexecPrepared(c->conn, stmntName.c_str(), values.size(), &values.front(), &lengths.front(), &formats.front(), 0);
- c->checkResult(res, PGRES_COMMAND_OK, PGRES_TUPLES_OK);
- unsigned int rows = atoi(PQcmdTuples(res));
- PQclear(res);
- if (rows == 0 && !anc) {
- throw Error("No rows affected");
- }
- return rows;
-}
-