dbExecute,dbi.catalog,SQL-method | R Documentation |
dbi.table
sCall DBI methods using the underlying DBI connection.
## 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, ...)
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 |
dbExecute
, dbGetInfo
,
dbSendStatement
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.