diff options
Diffstat (limited to 'libodbcpp/odbc-error.h')
-rw-r--r-- | libodbcpp/odbc-error.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/libodbcpp/odbc-error.h b/libodbcpp/odbc-error.h new file mode 100644 index 0000000..0348980 --- /dev/null +++ b/libodbcpp/odbc-error.h @@ -0,0 +1,24 @@ +#ifndef ODBC_ERROR_H +#define ODBC_ERROR_H + +#include <sql.h> +#include <stdlib.h> +#include <exception> +#include <error.h> + +namespace ODBC { + class Error : public DB::Error { + public: + Error(RETCODE err, SQLSMALLINT handletype, SQLHANDLE handle, char const * action); + Error(char const * action); + ~Error() throw(); + + const char * what() const throw(); + protected: + Error(char * msg); + private: + char * msg; + }; +} + +#endif |