3.1. Core Library Functions

3.1.1. dbi_initialize

int dbi_initialize(const char *driverdir)

Locates all available shared modules (drivers) and loads them into memory.

3.1.2. dbi_shutdown

void dbi_shutdown()

Frees all loaded drivers and terminates the DBI system. You should close each connection you opened before shutting down, but libdbi will clean up after you if you don't.

3.1.3. dbi_version

const char *dbi_version()

Requests the version of libdbi. The calling program must not attempt to free the returned string.