Qore Programming Language Reference Manual
0.8.7
Main Page
Related Pages
Modules
Namespaces
Classes
All
Classes
Namespaces
Functions
Variables
Groups
Pages
ql_dbi.dox.h
1
2
namespace
Qore::SQL {
7
9
23
*
int
getDBIDriverCapabilities
(
string
driver);
24
26
30
nothing
getDBIDriverCapabilities
();
31
33
47
*
list
getDBIDriverCapabilityList
(
string
driver);
48
50
54
nothing
getDBIDriverCapabilityList
();
55
57
69
*
list
getDBIDriverList
();
70
72
90
hash
parseDatasource
(
string
ds);
91
93
97
nothing
parseDatasource
();
98
100
};
102
namespace
Qore::SQL {
148
150
166
int
dbi_get_driver_capabilities
(
string
driver);
167
169
185
*
list
dbi_get_driver_capability_list
(
string
driver);
186
188
202
*
list
dbi_get_driver_list
();
203
205
221
*
hash
dbi_get_driver_options
(
string
driver);
222
224
244
hash
parse_datasource
(
string
ds);
245
247
};
249
namespace
Qore::SQL {
254
256
const
BLOB
=
"blob"
;
258
const
CLOB
=
"clob"
;
260
const
DATE
=
"date"
;
262
264
const
DECIMAL
=
"number"
;
266
268
const
NUMBER
=
"number"
;
270
272
const
NUMERIC
=
"number"
;
274
const
VARCHAR
=
"string"
;
276
};