Learn R Programming

connector (version 0.1.0)

connectors: 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

Run this code
# 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

Run the code above in your browser using DataLab