blob: f7c2958c25d54fb1867dbf18211f20b001898e49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|