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

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

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

#endif