List the available drivers on your system. See the Installation section of the package README for details on how to install drivers for the most common databases.
odbcListDrivers(
keep = getOption("odbc.drivers_keep"),
filter = getOption("odbc.drivers_filter")
)
A data frame with three columns.
If a given driver does not have any attributes the last two columns will be
NA
. Drivers can be excluded from being returned by setting the
odbc.drivers.filter
option.
Name of the driver
Driver attribute name
Driver attribute value
A character vector of driver names to keep in the results, if
NULL
(the default) will keep all drivers.
A character vector of driver names to filter from the results, if
NULL
(the default) will not filter any drivers.