diff options
Diffstat (limited to 'libodbcpp/command.h')
-rw-r--r-- | libodbcpp/command.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libodbcpp/command.h b/libodbcpp/command.h index 1bc9f6d..fdabe4a 100644 --- a/libodbcpp/command.h +++ b/libodbcpp/command.h @@ -1,13 +1,14 @@ #ifndef ODBC_COMMAND_H #define ODBC_COMMAND_H +#include "../libdbpp/command.h" #include <vector> #include "connection.h" #include <glibmm/ustring.h> namespace ODBC { class Param; - class Command { + class Command : public virtual DB::Command { typedef std::vector<Param*> Params; public: Command(const Connection &, const std::string & sql); @@ -31,7 +32,6 @@ namespace ODBC { void bindNull(unsigned int i); - const std::string sql; protected: friend class Param; friend class Column; |