blob: a2a99cff16fbf674feae36b0c3ae99b602706712 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef CONNECTION_H
#define CONNECTION_H
#include "dsn.h"
#include <sql.h>
namespace ODBC {
class Connection {
public:
Connection(const DSN& d);
Connection(const String& str);
~Connection();
SQLHENV env;
SQLHDBC conn;
int beginTx();
int commitTx();
int rollbackTx();
void abortTx() const;
bool txIsAborted() const;
private:
mutable unsigned int txDepth;
mutable bool txAborted;
};
}
#endif
|