summaryrefslogtreecommitdiff
path: root/libodbcpp/modifycommand.h
blob: 24fb960f231aa75f5cd0ed9ce06e1f3380e962af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef ODBC_MODIFYCOMMAND_H
#define ODBC_MODIFYCOMMAND_H

#include <modifycommand.h>
#include "command.h"

namespace ODBC {
	class ModifyCommand : public Command, public DB::ModifyCommand {
		public:
			ModifyCommand(const Connection &, const std::string & sql);
			~ModifyCommand();
			// Execute the command and return effected row count
			unsigned int		execute(bool allowNoChange = true);
	};
}

#endif