Skip to contents

append_table appends a dataframe to a SQL table.

Usage

append_table(.data, conn, database, schema, table)

Arguments

.data

Dataframe to append to the SQL table.

conn

A DBIConnection object, as returned by DBI::dbConnect().

database

Name of database or catalog.

schema

Name of schema.

table

Name of table.

Value

A scalar numeric.

Examples

if (FALSE) { # \dontrun{
append_table(
  .data = my_dataframe,
  conn = my_connection,
  database = "my_database",
  schema = "my_schema",
  table = "my_table"
)
} # }