- schema
A string, the schema name of the SQL table to TRUNCATE.
- table
A string, the table name of the SQL table to TRUNCATE.
- restart_identity
TRUE/FALSE, if TRUE, will add RESTART IDENTITY to the statement.
- continue_identity
TRUE/FALSE, if TRUE, will add CONTINUE IDENTITY to the statement.
- cascade
TRUE/FALSE, if TRUE, will add CASCADE to the statement.
- restrict
TRUE/FALSE, if TRUE, will add RESTRICT to the statement.
- con
A database connection that can be passed to DBI::dbSendQuery/DBI::dbGetQuery.