blob: fd6990097d4605b85167176f781f6059db5b8dff (
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
29
|
#ifndef ODBC_BIND_H
#define ODBC_BIND_H
#include <sql.h>
#include <vector>
namespace ODBC {
class Command;
class BindBase {
public:
BindBase();
virtual ~BindBase() {}
protected:
SQLLEN bindLen; // Used memory
friend class Param;
friend class Column;
friend class Command;
};
template <class t>
class Bind {
public:
virtual ~Bind() {}
mutable t value;
};
typedef std::vector<char> SQLCHARVEC;
}
#endif
|