dbi.attach {dbi.table} | R Documentation |
Attach a Database Schema to the Search Path
Description
The database schema is attached to the R search path. This means that the
schema is searched by R when evaluating a variable, so that
dbi.table
s in the schema can be accessed by simply giving
their names.
Usage
dbi.attach(
what,
pos = 2L,
name = NULL,
warn.conflicts = FALSE,
schema = NULL,
graphics = TRUE
)
Arguments
what |
a connection handle returned by |
pos |
an integer specifying position in |
name |
a character string specifying the name to use for the attached database. |
warn.conflicts |
a logical value. If |
schema |
a character string specifying the name of the schema to attach. |
graphics |
a logical value; passed to |
Value
an environment
, the attached schema is invisibly returned.