Execute DELETE
query
delete(conn, ...)
# S3 method for MariaDBConnection
delete(conn, ..., quiet = FALSE)
DB connection object.
DELETE
query and optional parameters.
Boolean flag to hide status messages.
Other DB functions:
close_conn()
,
insert()
,
list_tables()
,
open_conn_mysql()
,
select_all()
,
select()
,
update()
if (FALSE) {
conn <- open_conn_mysql("sys", "root")
out <- delete(conn, "DELETE sys_config SET value = 1")
close_conn(conn)
}