| dbAppendTable,DatabaseConnectorConnection,character-method | R Documentation |
The dbAppendTable() method assumes that the table has been created
beforehand, e.g. with dbCreateTable().
The default implementation calls sqlAppendTableTemplate() and then
dbExecute() with the param argument.
Use dbAppendTableArrow() to append data from an Arrow stream.
## S4 method for signature 'DatabaseConnectorConnection,character'
dbAppendTable(
conn,
name,
value,
databaseSchema = NULL,
temporary = FALSE,
oracleTempSchema = NULL,
tempEmulationSchema = getOption("sqlRenderTempEmulationSchema"),
...,
row.names = NULL
)
conn |
A DBIConnection object, as returned by
|
name |
The table name, passed on to
|
value |
A data.frame (or coercible to data.frame). |
databaseSchema |
The name of the database schema. See details for platform-specific details. |
temporary |
Should the table created as a temp table? |
oracleTempSchema |
DEPRECATED: use |
tempEmulationSchema |
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. |
... |
Other parameters passed on to methods. |
row.names |
Must be |
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.
dbAppendTable() returns a
scalar
numeric.
Other DBIConnection generics:
DBIConnection-class,
dbAppendTableArrow(),
dbCreateTable(),
dbCreateTableArrow(),
dbDataType(),
dbDisconnect(),
dbExecute(),
dbExistsTable(),
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.