get_tables | R Documentation |
List the available tables on the connection
get_tables(conn, pattern = NULL, show_temporary = TRUE)
conn |
( |
pattern |
( |
show_temporary |
( |
A data.frame containing table names including schema (and catalog when available) in the database.
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.