createSCHEMA | R Documentation |
Generate a PostgreSQL CREATE SCHEMA statement, optionally execute the statement if con is not NULL.
createSCHEMA(name, authorization = NULL, if_not_exists = FALSE, con = NULL)
name |
A string, the "schema_name" parameter for PostgreSQL CREATE SCHEMA. |
authorization |
A string, the "role_specification" parameter for PostgreSQL CREATE SCHEMA. |
if_not_exists |
TRUE/FALSE, if TRUE, adds "IF NOT EXISTS" to PostgreSQL CREATE SCHEMA statement. |
con |
A database connection that can be passed to DBI::dbSendQuery/DBI::dbGetQuery. |
A string, PostgreSQL CREATE SCHEMA statement; or the results retrieved by DBI::dbSendQuery after executing the statement.
createSCHEMA("dev")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.