Returns the unquoted names of remote tables accessible through this connection. This should include views and temporary objects, but not all database backends (in particular RMariaDB and RMySQL) support this.
# S4 method for DatabaseConnectorConnection
dbDisconnect(conn)# S4 method for DatabaseConnectorConnection
show(object)
# S4 method for DatabaseConnectorConnection
dbGetInfo(dbObj, ...)
# S4 method for DatabaseConnectorConnection,character
dbQuoteIdentifier(conn, x, ...)
# S4 method for DatabaseConnectorConnection,character
dbQuoteString(conn, x, ...)
# S4 method for DatabaseConnectorConnection,character
dbGetQuery(conn, statement, translate = TRUE, ...)
# S4 method for DatabaseConnectorConnection,character
dbSendStatement(conn, statement, translate = TRUE, ...)
# S4 method for DatabaseConnectorConnection,character
dbExecute(conn, statement, translate = TRUE, ...)
# S4 method for DatabaseConnectorConnection,character
dbListFields(conn, name, databaseSchema = NULL, ...)
# S4 method for DatabaseConnectorConnection,character
dbExistsTable(conn, name, databaseSchema = NULL, ...)
# S4 method for DatabaseConnectorConnection,ANY
dbWriteTable(
conn,
name,
value,
databaseSchema = NULL,
overwrite = FALSE,
append = FALSE,
temporary = FALSE,
oracleTempSchema = NULL,
tempEmulationSchema = getOption("sqlRenderTempEmulationSchema"),
...
)
# S4 method for DatabaseConnectorConnection,character
dbAppendTable(
conn,
name,
value,
databaseSchema = NULL,
temporary = FALSE,
oracleTempSchema = NULL,
tempEmulationSchema = getOption("sqlRenderTempEmulationSchema"),
...,
row.names = NULL
)
# S4 method for DatabaseConnectorConnection
dbCreateTable(
conn,
name,
fields,
databaseSchema = NULL,
oracleTempSchema = NULL,
tempEmulationSchema = getOption("sqlRenderTempEmulationSchema"),
...,
row.names = NULL,
temporary = FALSE
)
# S4 method for DatabaseConnectorConnection,character
dbReadTable(
conn,
name,
databaseSchema = NULL,
oracleTempSchema = NULL,
tempEmulationSchema = getOption("sqlRenderTempEmulationSchema"),
...
)
# S4 method for DatabaseConnectorConnection,ANY
dbRemoveTable(
conn,
name,
databaseSchema = NULL,
oracleTempSchema = NULL,
tempEmulationSchema = getOption("sqlRenderTempEmulationSchema"),
...
)
# S4 method for DatabaseConnectorConnection
dbListTables(conn, databaseSchema = NULL, ...)
dbListTables()
returns a character vector
that enumerates all tables
and views
in the database.
Tables added with dbWriteTable()
are part of the list. As soon a table is removed from the database, it is also removed from the list of database tables.
The same applies to temporary tables if supported by the database.
The returned names are suitable for quoting with dbQuoteIdentifier()
.
A DBIConnection object, as returned by
dbConnect()
.
Not used
The name of the database schema. See details for platform-specific details.
Overwrite an existing table (if exists)?
Append to existing table?
Should the table created as a temp table?
DEPRECATED: use tempEmulationSchema
instead.
Some database platforms like Oracle and Impala do not truly support temp tables. To emulate temp tables, provide a schema with write privileges where temp tables can be created.
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.
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.
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.
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.
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.
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.
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.
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.
Other DBIConnection generics:
DBIConnection-class
,
dbAppendTable()
,
dbCreateTable()
,
dbDataType()
,
dbDisconnect()
,
dbExecute()
,
dbExistsTable()
,
dbGetException()
,
dbGetInfo()
,
dbGetQuery()
,
dbIsReadOnly()
,
dbIsValid()
,
dbListFields()
,
dbListObjects()
,
dbListResults()
,
dbReadTable()
,
dbRemoveTable()
,
dbSendQuery()
,
dbSendStatement()
,
dbWriteTable()