
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)
A string, PostgreSQL CREATE SCHEMA statement; or the results retrieved by DBI::dbSendQuery after executing the statement.
A string, the "schema_name" parameter for PostgreSQL CREATE SCHEMA.
A string, the "role_specification" parameter for PostgreSQL CREATE SCHEMA.
TRUE/FALSE, if TRUE, adds "IF NOT EXISTS" to PostgreSQL CREATE SCHEMA statement.
A database connection that can be passed to DBI::dbSendQuery/DBI::dbGetQuery.