Description Usage Arguments Value Author(s) Examples
View source: R/get_table_names.R
This function will get a list of table names from "PODR".
1 2 3 4 5 6 | get_table_names(
con = getOption("podr_connection"),
query_string = NULL,
lib_sel = NULL,
ds_sel = NULL
)
|
con |
The connection to PODR. Use connect_podr to establish a connection, or specify a variable containing the proper PostgreSQL connection into PODR yourself |
query_string |
provides full SQL statement |
lib_sel |
Library name selection pattern |
ds_sel |
Dataset name selection pattern |
The selected table names in a data.frame
Hanming Tu
1 2 3 4 5 6 7 | ## Not run:
cc <- conn_podr()
get_table_names(con=cc)
get_table_names(query_string = "select * from information_schema.tables")
get_table_names(query_string = "select * from information_schema.tables", lib_sel = "readme")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.