Enumerates all loaded drivers. If Current is NULL, the first available driver will be returned. If Current is a valid driver, the next available driver will be returned.
Arguments
Current: The current driver in the list of drivers.
Returns
The next available driver, or NULL if there is an error or no more are available.
3.2.2. dbi_driver_open
dbi_driver dbi_driver_open(const char *name)
Locate the driver with the specified name.
Arguments
name: The name of the driver to open.
Returns
The requested driver, or NULL if there is an error or it is not found.
3.2.3. dbi_driver_is_reserved_word
int dbi_driver_is_reserved_word(dbi_driver Driver, const char *word)
Looks for the specified word in the list of reserved words. The result of this function may vary between databases. Case does not matter.
Arguments
Driver: The target driver.
word: The word to check against the reserved word list.
Returns
-1 if an error occurs, 0 if the word is not reserved, 1 otherwise.
Returns a function pointer to the specifed custom function. This can be used to access database-specific functionality, but it will restrict your code to one particular database, lessening the benefits of using libdbi.
Arguments
Driver: The target driver.
name: The name of the custom function.
Returns
If the custom function is found, a pointer to that function. If not, returns NULL.
3.2.5. dbi_driver_quote_string
int dbi_driver_quote_string(dbi_driver Driver, char **orig)
Encloses the target string in the types of quotes that the database expects, and escapes any special characters. The original string will be freed and will point to a newly allocated one (which you still must free on your own).
Arguments
Driver: The target driver.
orig: A pointer to the string to quote and escape.
Requests the maintainer of the specified driver. The calling program must not attempt to free the returned string.
Arguments
Driver: The target driver.
Returns
A string containing the driver maintainer's full name and email address.
3.2.6.5. dbi_driver_get_url
const char *dbi_driver_get_url(dbi_driver Driver)
Requests the maintainer's URL for the specified driver. This is useful for drivers maintained by a third party. The calling program must not attempt to free the returned string.