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

#include "command.h"

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

#endif