Old DBI functions; see DBI Functions
*int Qore::SQL::getDBIDriverCapabilities |
( |
string |
driver | ) |
|
nothing Qore::SQL::getDBIDriverCapabilities |
( |
| ) |
|
This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.
- Code Flags:
- NOOP, DEPRECATED
*list Qore::SQL::getDBIDriverCapabilityList |
( |
string |
driver | ) |
|
nothing Qore::SQL::getDBIDriverCapabilityList |
( |
| ) |
|
This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.
- Code Flags:
- NOOP, DEPRECATED
*list Qore::SQL::getDBIDriverList |
( |
| ) |
|
Returns a list of strings of DBI drivers currently loaded or NOTHING if no drivers are loaded.
- Code Flags:
- CONSTANT, DEPRECATED
- Returns
- a list of strings of DBI drivers currently loaded or NOTHING if no drivers are loaded
- Deprecated:
- use dbi_get_driver_list() instead; camel-case function names were deprecated in Qore 0.8.12
hash Qore::SQL::parseDatasource |
( |
string |
ds | ) |
|
Returns a datasource hash of the components of a datasource string.
- Code Flags:
- RET_VALUE_ONLY, DEPRECATED
- Parameters
-
ds | a string describing the datasource with the following syntax:
[ driver:][ user]:[/ pass]@ db[( charset)][% host[: port][{ option= val[,...]}]
where all elements except @ db are optional |
- Returns
- a datasource hash of the components of a datasource string
- Exceptions
-
DATASOURCE-PARSE-ERROR | a syntax error occurred parsing the datasource string (missing field, unexpected character, etc) |
- Deprecated:
- use parse_datasource() instead; camel-case function names were deprecated in Qore 0.8.12
nothing Qore::SQL::parseDatasource |
( |
| ) |
|
This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.
- Code Flags:
- NOOP, DEPRECATED