Skip to contents

On MacOS and Linux, odbc uses the unixODBC driver manager to manage information about driver and data sources. This helper returns the filepaths where the driver manager will look for that information.

This function is a wrapper around the command line call odbcinst -j.

Windows does not use .ini configuration files; this function will return a 0-length vector on Windows.

Usage

odbcListConfig()

See also

The odbcListDrivers() and odbcListDataSources() helpers return information on the contents of odbcinst.ini and odbc.ini files, respectively.

Learn more about unixODBC and the odbcinst utility here.

Examples

if (FALSE) {
configs <- odbcListConfig()

file.edit(configs[1])
}