blob: d9f58c6195703a167781e9b54c51b8822d27a300 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef SQLITE_MODIFYCOMMAND_H
#define SQLITE_MODIFYCOMMAND_H
#include "sqlite-command.h"
#include <modifycommand.h>
namespace SQLite {
class Connection;
class ModifyCommand : public DB::ModifyCommand, public Command {
public:
ModifyCommand(const Connection *, const std::string & sql);
unsigned int execute(bool) override;
};
}
#endif
|