R/DBI.R
dbAppendTable-DatabaseConnectorConnection-character-method.RdThe 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 class 'DatabaseConnectorConnection,character'
dbAppendTable(
conn,
name,
value,
databaseSchema = NULL,
temporary = FALSE,
...,
row.names = NULL
)A DBIConnection object, as returned by
dbConnect().
The table name, passed on to dbQuoteIdentifier(). Options are:
a character string with the unquoted DBMS table name,
e.g. "table_name",
a call to Id() with components to the fully qualified table name,
e.g. Id(schema = "my_schema", table = "table_name")
a call to SQL() with the quoted and fully qualified table name
given verbatim, e.g. SQL('"my_schema"."table_name"')
A data.frame (or coercible to data.frame).
The name of the database schema. See details for platform-specific details.
Should the table created as a temp table?
Other parameters passed on to methods.
Must be NULL.
dbAppendTable() returns a
scalar
numeric.
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,
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()