select {dabr} | R Documentation |
SELECT
queryExecute SELECT
query
select(conn, ...)
## S3 method for class 'MariaDBConnection'
select(conn, ..., quiet = FALSE)
conn |
DB connection object. |
... |
|
quiet |
Boolean flag to hide status messages. |
Data frame containing the selected records.
Other DB functions:
close_conn()
,
delete()
,
insert()
,
list_tables()
,
open_conn_mysql()
,
select_all()
,
update()
## Not run:
conn <- open_conn_mysql("sys", "root")
out <- select(conn, "SELECT variable, value FROM sys_config")
close_conn(conn)
## End(Not run)