odbcListDrivers {odbc} | R Documentation |
List Available ODBC Drivers
Description
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.
Usage
odbcListDrivers(
keep = getOption("odbc.drivers_keep"),
filter = getOption("odbc.drivers_filter")
)
Arguments
keep |
A character vector of driver names to keep in the results, if
|
filter |
A character vector of driver names to filter from the results, if
|
Value
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
Name of the driver
- attribute
Driver attribute name
- value
Driver attribute value
[Package odbc version 1.3.3 Index]