From cfa36aa5466d4c342c7de0f6cea7b8386984fd36 Mon Sep 17 00:00:00 2001 From: randomdan Date: Wed, 9 Feb 2011 01:33:33 +0000 Subject: Fix the build system to do dependencies properly Break down libodbcpp into a set of base classes; libdbpp Add a native PostgreSQL implementation of libdbpp; libpqpp Extend project2 rdbms stuff to work with generic connectors Update datasources to specify connector type Build libmisc as .so --- libpqpp/modifycommand.cpp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 libpqpp/modifycommand.cpp (limited to 'libpqpp/modifycommand.cpp') diff --git a/libpqpp/modifycommand.cpp b/libpqpp/modifycommand.cpp new file mode 100644 index 0000000..14bfb16 --- /dev/null +++ b/libpqpp/modifycommand.cpp @@ -0,0 +1,26 @@ +#include "modifycommand.h" +#include +#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) +{ +} + +PQ::ModifyCommand::~ModifyCommand() +{ +} + +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, __PRETTY_FUNCTION__); + unsigned int rows = atoi(PQcmdTuples(res)); + PQclear(res); + return rows; +} + -- cgit v1.2.3