blob: acc69040d12560b5752209bd3d7a42f373328966 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#ifndef ODBC_COLUMN_H
#define ODBC_COLUMN_H
#include "ustring.h"
#include "bind.h"
namespace ODBC {
class Column : public BindBase {
public:
Column(String, unsigned int);
virtual ~Column();
void bind(SQLHANDLE, SQLUINTEGER, SQLSMALLINT, void*, size_t);
operator int () const;
operator unsigned int () const;
operator long long () const;
operator unsigned long long () const;
operator double () const;
operator float () const;
operator const unsigned char * () const;
operator const char * () const;
operator std::string () const;
operator String () const;
operator const struct tm & () const;
virtual void rebind(Command *, unsigned int col) const = 0;
const unsigned int colNo;
const String name;
private:
mutable bool fresh;
friend class SelectCommand;
};
template <class t>
class _Column : public Bind<t>, public Column {
public:
_Column(String, unsigned int);
~_Column() {}
void rebind(Command *, unsigned int col) const;
};
}
#endif
|