Skip to contents

Drop a SQL Table

Usage

nuke_table(conn, database, schema, table)

Arguments

conn

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

database

Name of database or catalog.

schema

Name of schema.

table

Name of table.

Value

TRUE invisibly.

Examples

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