Description Usage Arguments Details Value Note Author(s) Examples
Given a vector, this function returns a string with each element of the input coerced to character, quoted, and separated by ",".
1 |
names |
A vector of values to quote |
If names
is a character vector with elements containing single
quotes, these quotes will be doubled so as to escape the quote in SQL.
A character vector of length one that represents the input vector as a SQL value list. Each element is single quoted and elements are comma separated.
Do not use sQuote
for generating SQL as that function is
intended for display purposes only. In some locales, sQuote
will generate fancy quotes which will break your SQL.
Hervé Pagès
1 2 | toSQLStringSet(letters[1:4])
toSQLStringSet(c("'foo'", "ab'cd", "bar"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.