dbExecute,dbi.catalog,SQL-method {dbi.table} | R Documentation |
DBI Methods for dbi.table
s
Description
Call DBI methods using the underlying DBI connection.
Usage
## S4 method for signature 'dbi.catalog,SQL'
dbExecute(conn, statement, ...)
## S4 method for signature 'dbi.schema,SQL'
dbExecute(conn, statement, ...)
## S4 method for signature 'dbi.table,SQL'
dbExecute(conn, statement, ...)
## S4 method for signature 'dbi.table,missing'
dbSendStatement(
conn,
statement,
...,
n = getOption("dbi_table_max_fetch", 10000L)
)
## S4 method for signature 'dbi.table,missing'
dbGetQuery(conn, statement, ..., n = getOption("dbi_table_max_fetch", 10000L))
## S4 method for signature 'dbi.catalog'
dbGetInfo(dbObj, ...)
## S4 method for signature 'dbi.schema'
dbGetInfo(dbObj, ...)
## S4 method for signature 'dbi.table'
dbGetInfo(dbObj, ...)
Arguments
conn |
a |
statement |
a |
... |
other parameters passed on to methods. |
n |
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. |
dbObj |
a |
See Also
dbExecute
, dbGetInfo
,
dbSendStatement
[Package dbi.table version 1.0.3 Index]