| dbExistsTable,DatabaseConnectorConnection,character-method | R Documentation |
Returns if a table given by name exists in the database.
## S4 method for signature 'DatabaseConnectorConnection,character'
dbExistsTable(conn, name, databaseSchema = NULL, ...)
conn |
A DBIConnection object, as returned by
|
name |
The table name, passed on to
|
databaseSchema |
The name of the database schema. See details for platform-specific details. |
... |
Other parameters passed on to methods. |
The databaseSchema argument is interpreted differently according to the different platforms:
SQL Server and PDW: The databaseSchema schema should specify both the database and the schema, e.g.
'my_database.dbo'. Impala: the databaseSchema should specify the database. Oracle:
The databaseSchema should specify the Oracle 'user'. All other : The databaseSchema should
specify the schema.
dbExistsTable() returns a logical scalar, TRUE if the table or view
specified by the name argument exists, FALSE otherwise.
This includes temporary tables if supported by the database.
Other DBIConnection generics:
DBIConnection-class,
dbAppendTable(),
dbAppendTableArrow(),
dbCreateTable(),
dbCreateTableArrow(),
dbDataType(),
dbDisconnect(),
dbExecute(),
dbGetException(),
dbGetInfo(),
dbGetQuery(),
dbGetQueryArrow(),
dbIsReadOnly(),
dbIsValid(),
dbListFields(),
dbListObjects(),
dbListResults(),
dbListTables(),
dbQuoteIdentifier(),
dbReadTable(),
dbReadTableArrow(),
dbRemoveTable(),
dbSendQuery(),
dbSendQueryArrow(),
dbSendStatement(),
dbUnquoteIdentifier(),
dbWriteTable(),
dbWriteTableArrow()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.