Select all the records inside a particular table, use the table
parameter.
select_all(conn, ...)
# S3 method for MariaDBConnection
select_all(conn, table, quiet = FALSE, ...)MariaDBConnection connection object.
Optional parameters.
Name of the table.
Boolean flag to hide status messages.
Data frame with records.
Other DB functions:
close_conn(),
delete(),
insert(),
list_tables(),
open_conn_mysql(),
select(),
update()
if (FALSE) {
conn <- dabr::open_conn_mysql("sys", "root")
out <- dabr::select_all(conn, "sys_config")
dabr::close_conn(conn)
}