Learn R Programming

dbi.table (version 1.0.4)

dbi.table.DBI: DBI Methods for dbi.tables

Description

Call DBI methods using the underlying DBI connection.

Usage

# S4 method for dbi.catalog
dbAppendTable(conn, name, value, ..., row.names = NULL)

# S4 method for dbi.schema dbAppendTable(conn, name, value, ..., row.names = NULL)

# S4 method for dbi.table dbAppendTable(conn, name, value, ..., row.names = NULL)

# S4 method for dbi.catalog dbCreateTable(conn, name, fields, ..., row.names = NULL, temporary = FALSE)

# S4 method for dbi.schema dbCreateTable(conn, name, fields, ..., row.names = NULL, temporary = FALSE)

# S4 method for dbi.table dbCreateTable(conn, name, fields, ..., row.names = NULL, temporary = FALSE)

# S4 method for dbi.catalog,ANY dbExecute(conn, statement, ...)

# S4 method for dbi.schema,ANY dbExecute(conn, statement, ...)

# S4 method for dbi.table,ANY dbExecute(conn, statement, ...)

# S4 method for dbi.catalog dbGetInfo(dbObj, ...)

# S4 method for dbi.schema dbGetInfo(dbObj, ...)

# S4 method for dbi.table dbGetInfo(dbObj, ...)

# S4 method for dbi.table,missing dbGetQuery(conn, statement, ...)

# S4 method for dbi.catalog,ANY dbGetQuery(conn, statement, ...)

# S4 method for dbi.schema,ANY dbGetQuery(conn, statement, ...)

# S4 method for dbi.table,ANY dbGetQuery(conn, statement, ...)

# S4 method for dbi.catalog,ANY dbListFields(conn, name, ...)

# S4 method for dbi.schema,ANY dbListFields(conn, name, ...)

# S4 method for dbi.table,ANY dbListFields(conn, name, ...)

# S4 method for dbi.catalog dbListObjects(conn, prefix = NULL, ...)

# S4 method for dbi.schema dbListObjects(conn, prefix = NULL, ...)

# S4 method for dbi.table dbListObjects(conn, prefix = NULL, ...)

# S4 method for dbi.catalog,ANY dbQuoteIdentifier(conn, x, ...)

# S4 method for dbi.schema,ANY dbQuoteIdentifier(conn, x, ...)

# S4 method for dbi.table,ANY dbQuoteIdentifier(conn, x, ...)

# S4 method for dbi.catalog dbQuoteLiteral(conn, x, ...)

# S4 method for dbi.schema dbQuoteLiteral(conn, x, ...)

# S4 method for dbi.table dbQuoteLiteral(conn, x, ...)

# S4 method for dbi.catalog,ANY dbQuoteString(conn, x, ...)

# S4 method for dbi.schema,ANY dbQuoteString(conn, x, ...)

# S4 method for dbi.table,ANY dbQuoteString(conn, x, ...)

# S4 method for dbi.catalog,ANY dbReadTable(conn, name, ...)

# S4 method for dbi.schema,ANY dbReadTable(conn, name, ...)

# S4 method for dbi.table,ANY dbReadTable(conn, name, ...)

# S4 method for dbi.catalog,ANY dbRemoveTable(conn, name, ...)

# S4 method for dbi.schema,ANY dbRemoveTable(conn, name, ...)

# S4 method for dbi.table,ANY dbRemoveTable(conn, name, ...)

# S4 method for dbi.table,missing dbSendStatement(conn, statement, ...)

# S4 method for dbi.catalog,ANY dbSendStatement(conn, statement, ...)

# S4 method for dbi.schema,ANY dbSendStatement(conn, statement, ...)

# S4 method for dbi.table,ANY dbSendStatement(conn, statement, ...)

# S4 method for dbi.catalog dbWithTransaction(conn, code, ...)

# S4 method for dbi.schema dbWithTransaction(conn, code, ...)

# S4 method for dbi.table dbWithTransaction(conn, code, ...)

# S4 method for dbi.catalog,ANY dbWriteTable(conn, name, value, ...)

# S4 method for dbi.schema,ANY dbWriteTable(conn, name, value, ...)

# S4 method for dbi.table,ANY dbWriteTable(conn, name, value, ...)

Arguments

conn

A dbi.catalog, dbi.schema, or dbi.table.

name

Please refer to the documentation for the generic function (links can be found in the 'See Also' section).

value

Please refer to the documentation for the generic function (links can be found in the 'See Also' section).

...

Additional parameters to pass to methods.

row.names

Please refer to the documentation for the generic function (links can be found in the 'See Also' section).

fields

Please refer to the documentation for the generic function (links can be found in the 'See Also' section).

temporary

Please refer to the documentation for the generic function (links can be found in the 'See Also' section).

statement

Please refer to the documentation for the generic function (links can be found in the 'See Also' section).

dbObj

A dbi.catalog, dbi.schema, or dbi.table.

prefix

Please refer to the documentation for the generic function (links can be found in the 'See Also' section).

x

Please refer to the documentation for the generic function (links can be found in the 'See Also' section).

code

Please refer to the documentation for the generic function (links can be found in the 'See Also' section).

See Also