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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#[repr(C)]
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub struct SqlDataType(pub i16);
impl SqlDataType {
pub const UNKNOWN_TYPE: SqlDataType = SqlDataType(0);
pub const CHAR: SqlDataType = SqlDataType(1);
pub const NUMERIC: SqlDataType = SqlDataType(2);
pub const DECIMAL: SqlDataType = SqlDataType(3);
pub const INTEGER: SqlDataType = SqlDataType(4);
pub const SMALLINT: SqlDataType = SqlDataType(5);
pub const FLOAT: SqlDataType = SqlDataType(6);
pub const REAL: SqlDataType = SqlDataType(7);
pub const DOUBLE: SqlDataType = SqlDataType(8);
pub const DATETIME: SqlDataType = SqlDataType(9);
pub const VARCHAR: SqlDataType = SqlDataType(12);
#[cfg(feature = "odbc_version_4")]
pub const UDT: SqlDataType = SqlDataType(17);
#[cfg(feature = "odbc_version_4")]
pub const ROW: SqlDataType = SqlDataType(19);
#[cfg(feature = "odbc_version_4")]
pub const ARRAY: SqlDataType = SqlDataType(50);
#[cfg(feature = "odbc_version_4")]
pub const MULTISET: SqlDataType = SqlDataType(55);
pub const DATE: SqlDataType = SqlDataType(91);
pub const TIME: SqlDataType = SqlDataType(92);
pub const TIMESTAMP: SqlDataType = SqlDataType(93);
#[cfg(feature = "odbc_version_4")]
pub const TIME_WITH_TIMEZONE: SqlDataType = SqlDataType(94);
#[cfg(feature = "odbc_version_4")]
pub const TIMESTAMP_WITH_TIMEZONE: SqlDataType = SqlDataType(95);
pub const EXT_TIME_OR_INTERVAL: SqlDataType = SqlDataType(10);
pub const EXT_TIMESTAMP: SqlDataType = SqlDataType(11);
pub const EXT_LONG_VARCHAR: SqlDataType = SqlDataType(-1);
pub const EXT_BINARY: SqlDataType = SqlDataType(-2);
pub const EXT_VAR_BINARY: SqlDataType = SqlDataType(-3);
pub const EXT_LONG_VAR_BINARY: SqlDataType = SqlDataType(-4);
pub const EXT_BIG_INT: SqlDataType = SqlDataType(-5);
pub const EXT_TINY_INT: SqlDataType = SqlDataType(-6);
pub const EXT_BIT: SqlDataType = SqlDataType(-7);
pub const EXT_W_CHAR: SqlDataType = SqlDataType(-8);
pub const EXT_W_VARCHAR: SqlDataType = SqlDataType(-9);
pub const EXT_W_LONG_VARCHAR: SqlDataType = SqlDataType(-10);
pub const EXT_GUID: SqlDataType = SqlDataType(-11);
}