diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-12-24 04:08:56 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-12-24 04:08:56 +0000 |
commit | 63d9cbb434ec4f6e828083b99d638127cfce7a95 (patch) | |
tree | 2dfcf95372467a9119147265fccfba058c617b8a /libodbcpp/error.h | |
parent | Use parent glibmm (diff) | |
download | libdbpp-odbc-63d9cbb434ec4f6e828083b99d638127cfce7a95.tar.bz2 libdbpp-odbc-63d9cbb434ec4f6e828083b99d638127cfce7a95.tar.xz libdbpp-odbc-63d9cbb434ec4f6e828083b99d638127cfce7a95.zip |
ODBC files prefixed with odbc-
Diffstat (limited to 'libodbcpp/error.h')
-rw-r--r-- | libodbcpp/error.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/libodbcpp/error.h b/libodbcpp/error.h deleted file mode 100644 index 0348980..0000000 --- a/libodbcpp/error.h +++ /dev/null @@ -1,24 +0,0 @@ -#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 |