diff options
Diffstat (limited to 'libodbcpp/odbc-modifycommand.cpp')
-rw-r--r-- | libodbcpp/odbc-modifycommand.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libodbcpp/odbc-modifycommand.cpp b/libodbcpp/odbc-modifycommand.cpp index 3bea818..2fca416 100644 --- a/libodbcpp/odbc-modifycommand.cpp +++ b/libodbcpp/odbc-modifycommand.cpp @@ -2,9 +2,7 @@ #include "odbc-error.h" ODBC::ModifyCommand::ModifyCommand(const ODBC::Connection & c, const std::string & sql) : - DB::Command(sql), - ODBC::Command(c, sql), - DB::ModifyCommand(sql) + DB::Command(sql), ODBC::Command(c, sql), DB::ModifyCommand(sql) { } @@ -27,4 +25,3 @@ ODBC::ModifyCommand::execute(bool anc) } throw DB::NoRowsAffected(); } - |