Learn R Programming

connector (version 1.0.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

cnts <- connectors(
  sdtm = connector_fs(path = tempdir()),
  adam = connector_dbi(drv = RSQLite::SQLite())
)

# Print for overview

cnts

# Print the individual connector for more information

cnts$sdtm

cnts$adam

Run the code above in your browser using DataLab