diff options
Diffstat (limited to 'libodbcpp/connection.h')
-rw-r--r-- | libodbcpp/connection.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libodbcpp/connection.h b/libodbcpp/connection.h index 82caf22..0d2e9d4 100644 --- a/libodbcpp/connection.h +++ b/libodbcpp/connection.h @@ -2,6 +2,7 @@ #define CONNECTION_H #include "dsn.h" +#include "error.h" #include <sql.h> namespace ODBC { @@ -26,6 +27,13 @@ namespace ODBC { mutable unsigned int txDepth; mutable bool txAborted; }; + class ConnectionError : public Error { + public: + ConnectionError(RETCODE err, SQLSMALLINT handletype, SQLHANDLE handle, char const * stage); + ConnectionError(const ConnectionError &); + + const time_t FailureTime; + }; } #endif |