diff options
Diffstat (limited to 'libodbcpp/command.cpp')
-rw-r--r-- | libodbcpp/command.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libodbcpp/command.cpp b/libodbcpp/command.cpp index 6c8bf3c..217954e 100644 --- a/libodbcpp/command.cpp +++ b/libodbcpp/command.cpp @@ -4,7 +4,8 @@ #include <sqlext.h> ODBC::Command::Command(const Connection& c, String s) : - sql(s) + sql(s), + connection(c) { RETCODE rc = SQLAllocHandle(SQL_HANDLE_STMT, c.conn, &hStmt); if (rc != SQL_SUCCESS) { |