Learn R Programming

dabr (version 0.0.4)

select_all: Select all the records

Description

Select all the records inside a particular table, use the table parameter.

Usage

select_all(conn, ...)

# S3 method for MariaDBConnection select_all(conn, table, quiet = FALSE, ...)

Value

Data frame with records.

Arguments

conn

MariaDBConnection connection object.

...

Optional parameters.

table

Name of the table.

quiet

Boolean flag to hide status messages.

See Also

Other DB functions: close_conn(), delete(), insert(), list_tables(), open_conn_mysql(), select(), update()

Examples

Run this code
if (FALSE) {
conn <- dabr::open_conn_mysql("sys", "root")
out <- dabr::select_all(conn, "sys_config")
dabr::close_conn(conn)
}

Run the code above in your browser using DataLab