connectors {connector} | R Documentation |
Collection of connector objects
Description
Holds a special list of individual connector objects for consistent use of connections in your project.
Usage
connectors(...)
Arguments
... |
Named individual Connector objects |
Examples
# Create connectors objects
con <- connectors(
sdtm = connector_fs(path = tempdir()),
adam = connector_dbi(drv = RSQLite::SQLite())
)
# Print for overview
con
# Print the individual connector for more information
con$sdtm
con$adam
[Package connector version 0.1.1 Index]