| exists_sql_table | R Documentation |
These functions simply wrap DBI functions to use the standard connection
defined in start_sql_connection().
exists_sql_table(name, ...)
list_sql_tables(...)
list_sql_table_fields(name, ...)
list_sql_objects(prefix = NULL, ...)
name |
The table name, passed on to
|
... |
Other parameters passed on to methods. |
prefix |
A fully qualified path in the database's namespace, or |
exists_sql_table() wraps DBI::dbExistsTable()
list_sql_tables() wraps DBI::dbListTables()
list_sql_table_fields() wraps DBI::dbListFields()
list_sql_objects() wraps DBI::dbListObjects()
See the DBI documentation for further information on each function.
name will be simply interpreted by sql_identifier(). If it is a character
string containing a fully qualified name (i.e. my_schema.my_table), call
sql_identifier() yourself and set parse = TRUE.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.