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.
dbi.attach(
what,
pos = 2L,
name = NULL,
warn.conflicts = FALSE,
schema = NULL,
graphics = TRUE
)
an environment
, the attached schema is invisibly returned.
a connection handle returned by dbConnect
or a
zero-argument function that returns a connection handle.
an integer specifying position in search
() where to
attach.
a character string specifying the name to use for the attached database.
a logical value. If TRUE
, warnings are printed about
conflicts
from attaching the database, unless that
database contains an object .conflicts.OK
. A conflict is a function
masking a function, or a non-function masking a non-function.
a character string specifying the name of the schema to attach.
a logical value; passed to menu
. In interactive
sessions, when schema
is NULL
and multiple schemas are
found on what
, a menu is displayed to select a schema.