diff options
Diffstat (limited to 'libodbcpp/error.h')
-rw-r--r-- | libodbcpp/error.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libodbcpp/error.h b/libodbcpp/error.h new file mode 100644 index 0000000..f7c2958 --- /dev/null +++ b/libodbcpp/error.h @@ -0,0 +1,16 @@ +#ifndef ODBC_ERROR_H +#define ODBC_ERROR_H + +#include <sql.h> + +namespace ODBC { + class Error { + public: + Error(RETCODE err, SQLSMALLINT handletype, SQLHANDLE handle, char const * action, ...) + __attribute__((format(printf, 5, 6))); + Error(char const * action, ...) + __attribute__((format(printf, 2, 3))); + }; +} + +#endif |