Returns TRUE if the SQL query executes successfully,
FALSE otherwise.
Arguments
con
An object that inherits from
DBIConnection-class, typically generated by
dbConnect()
data
A data.frame, tbl, or other valid SQL data type
containing the data to write to the database.
table
A character string specifying the DBMS table name.
schema
A character string specifying the schema in which the table is
nested.
append_only
A logical specifying whether the operation is
INSERT or UPDATE. Default of append_only = FALSE means
execute DELETE on table, and update with new data.
drop_overwrite
A logical specifying whether the operation is
DROP and INSERT. This will overwrite any existing field
types.