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.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 libpqpp/modifycommand.h (limited to 'libpqpp/modifycommand.h') diff --git a/libpqpp/modifycommand.h b/libpqpp/modifycommand.h new file mode 100644 index 0000000..a9cdbef --- /dev/null +++ b/libpqpp/modifycommand.h @@ -0,0 +1,21 @@ +#ifndef PQ_MODIFYCOMMAND_H +#define PQ_MODIFYCOMMAND_H + +#include "../libdbpp/modifycommand.h" +#include "command.h" + +namespace PQ { + class Connection; + class ModifyCommand : public DB::ModifyCommand, public Command { + public: + ModifyCommand(const Connection *, const std::string & sql, unsigned int no); + virtual ~ModifyCommand(); + + unsigned int execute(bool); + }; +} + +#endif + + + -- cgit v1.2.3