View source: R/odbc-connection.R
OdbcConnection-class | R Documentation |
Implementations of pure virtual functions defined in the DBI
package
for OdbcConnection objects.
## S4 method for signature 'OdbcConnection'
show(object)
## S4 method for signature 'OdbcConnection'
dbIsValid(dbObj, ...)
## S4 method for signature 'OdbcConnection'
dbDisconnect(conn, ...)
## S4 method for signature 'OdbcConnection,character'
dbSendQuery(conn, statement, params = NULL, ..., immediate = FALSE)
## S4 method for signature 'OdbcConnection,character'
dbExecute(conn, statement, params = NULL, ..., immediate = is.null(params))
## S4 method for signature 'OdbcConnection,character'
dbSendStatement(conn, statement, params = NULL, ..., immediate = FALSE)
## S4 method for signature 'OdbcConnection,ANY'
dbDataType(dbObj, obj, ...)
## S4 method for signature 'OdbcConnection,data.frame'
dbDataType(dbObj, obj, ...)
## S4 method for signature 'OdbcConnection,character'
dbQuoteIdentifier(conn, x, ...)
## S4 method for signature 'OdbcConnection,SQL'
dbQuoteIdentifier(conn, x, ...)
## S4 method for signature 'OdbcConnection'
dbGetInfo(dbObj, ...)
## S4 method for signature 'OdbcConnection,character'
dbGetQuery(
conn,
statement,
n = -1,
params = NULL,
immediate = is.null(params),
...
)
## S4 method for signature 'OdbcConnection'
dbBegin(conn, ...)
## S4 method for signature 'OdbcConnection'
dbCommit(conn, ...)
## S4 method for signature 'OdbcConnection'
dbRollback(conn, ...)
## S4 method for signature 'OdbcConnection,Id'
dbListFields(conn, name, ...)
## S4 method for signature 'OdbcConnection,SQL'
dbListFields(conn, name, ...)
## S4 method for signature 'OdbcConnection,character'
dbListFields(
conn,
name,
catalog_name = NULL,
schema_name = NULL,
column_name = NULL,
...
)
## S4 method for signature 'OdbcConnection,Id'
dbExistsTable(conn, name, ...)
## S4 method for signature 'OdbcConnection,SQL'
dbExistsTable(conn, name, ...)
## S4 method for signature 'OdbcConnection,character'
dbExistsTable(conn, name, ...)
## S4 method for signature 'OdbcConnection,character'
dbRemoveTable(conn, name, ...)
object |
Any R object |
dbObj |
An object inheriting from DBIObject, i.e. DBIDriver, DBIConnection, or a DBIResult |
... |
Other arguments to methods. |
conn |
A DBIConnection object, as returned by
|
statement |
a character string containing SQL. |
params |
Query parameters to pass to |
immediate |
If |
obj |
An R object whose SQL type we want to determine. |
x |
A character vector, SQL or Id object to quote as identifier. |
n |
maximum number of records to retrieve per fetch. Use |
name |
The table name, passed on to
|
catalog_name |
Catalog where table is located. |
schema_name |
Schema where table is located. |
column_name |
The name of the column to return, the default returns all columns. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.