diff options
author | randomdan <randomdan@localhost> | 2006-09-21 23:14:28 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2006-09-21 23:14:28 +0000 |
commit | 951e67b64812128249f572b60e7ca012bad28bfc (patch) | |
tree | 85b64c53883077e9ec11fe442ba60ee76d1a5431 /libodbcpp/command.cpp | |
parent | libcodbcpp initial release (diff) | |
download | libdbpp-odbc-951e67b64812128249f572b60e7ca012bad28bfc.tar.bz2 libdbpp-odbc-951e67b64812128249f572b60e7ca012bad28bfc.tar.xz libdbpp-odbc-951e67b64812128249f572b60e7ca012bad28bfc.zip |
Fix the C++ template errors
Add some half decent transaction support
Change the error handling to not 'handle' _with_info
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) { |