diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-06-02 00:43:47 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-06-02 00:43:47 +0100 |
commit | 93da8da13f7af27d9a884bacf9e0157f31827905 (patch) | |
tree | e56427fdbe38d4cc2f035b8751068a9001c8ca34 /libmysqlpp/selectcommand.h | |
parent | Add support for RDBMS boolean/bit types (diff) | |
download | libdbpp-mysql-93da8da13f7af27d9a884bacf9e0157f31827905.tar.bz2 libdbpp-mysql-93da8da13f7af27d9a884bacf9e0157f31827905.tar.xz libdbpp-mysql-93da8da13f7af27d9a884bacf9e0157f31827905.zip |
Fix behaviour of multiple executions
Diffstat (limited to 'libmysqlpp/selectcommand.h')
-rw-r--r-- | libmysqlpp/selectcommand.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libmysqlpp/selectcommand.h b/libmysqlpp/selectcommand.h index 7ffff54..58c569b 100644 --- a/libmysqlpp/selectcommand.h +++ b/libmysqlpp/selectcommand.h @@ -15,6 +15,7 @@ namespace MySQL { void execute(); private: + bool prepared; bool executed; Binds fields; }; |