From 2a1fa15d8baa4eda37e17b2e9362f8bde17a939d Mon Sep 17 00:00:00 2001 From: randomdan Date: Sat, 8 Jul 2006 16:32:05 +0000 Subject: libcodbcpp initial release --- libodbcpp/modifycommand.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 libodbcpp/modifycommand.h (limited to 'libodbcpp/modifycommand.h') diff --git a/libodbcpp/modifycommand.h b/libodbcpp/modifycommand.h new file mode 100644 index 0000000..ef480c9 --- /dev/null +++ b/libodbcpp/modifycommand.h @@ -0,0 +1,17 @@ +#ifndef ODBC_MODIFYCOMMAND_H +#define ODBC_MODIFYCOMMAND_H + +#include "command.h" + +namespace ODBC { + class ModifyCommand : public Command { + public: + ModifyCommand(const Connection&, String sql); + ~ModifyCommand(); + // Execute the command and return effected row count + unsigned int execute(bool allowNoChange = true); + }; +} + +#endif + -- cgit v1.2.3