View source: R/sql_identifier.R
| sql_identifier | R Documentation |
A simple wrapper around DBI::dbQuoteIdentifier(), see its documentation for
more information.
sql_identifier(name, parse = FALSE)
name |
A string, |
parse |
boolean; whether to attempt to parse |
If name is an SQL string, it will be validated. If it fails the validation,
the function will throw an error.
If name is a character string and parse = TRUE, then the function will
attempt to parse it into constituent parts
("db.schema.table" -> "db"."schema"."table"). It will also be validated.
A DBI::SQL() string properly identifying the desired object
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.