dbi.table
sCall DBI methods using the underlying DBI connection.
# S4 method for dbi.catalog,SQL
dbExecute(conn, statement, ...)# S4 method for dbi.schema,SQL
dbExecute(conn, statement, ...)
# S4 method for dbi.table,SQL
dbExecute(conn, statement, ...)
# S4 method for dbi.table,missing
dbSendStatement(
conn,
statement,
...,
n = getOption("dbi_table_max_fetch", 10000L)
)
# S4 method for dbi.catalog
dbGetInfo(dbObj, ...)
# S4 method for dbi.schema
dbGetInfo(dbObj, ...)
# S4 method for dbi.table
dbGetInfo(dbObj, ...)
a dbi.catalog
, dbi.schema
, or dbi.table
.
a SQL
object.
other parameters passed on to methods.
an integer value. A nonnegative value limits the number of records returned by the query. A negative value omits the LIMIT (or TOP) clause entirely.
a dbi.catalog
, dbi.schema
, or dbi.table
.