get_tables {SCDB} | R Documentation |
List the available tables on the connection
Description
List the available tables on the connection
Usage
get_tables(conn, pattern = NULL, show_temporary = TRUE)
Arguments
conn |
( |
pattern |
( |
show_temporary |
( |
Value
A data.frame containing table names including schema (and catalog when available) in the database.
Examples
conn <- get_connection()
dplyr::copy_to(conn, mtcars, name = "my_test_table_1", temporary = FALSE)
dplyr::copy_to(conn, mtcars, name = "my_test_table_2")
get_tables(conn, pattern = "my_[th]est")
get_tables(conn, pattern = "my_[th]est", show_temporary = FALSE)
close_connection(conn)
[Package SCDB version 0.4.0 Index]