RMySQL (version 0.10.9)

dbEscapeStrings: Escape SQL-special characters in strings.

Description

Escape SQL-special characters in strings.

Usage

dbEscapeStrings(con, strings, ...)
"dbEscapeStrings"(con, strings)
"dbEscapeStrings"(con, strings, ...)

Arguments

con
a connection object (see dbConnect).
strings
a character vector.
...
any additional arguments to be passed to the dispatched method.

Value

A character vector with SQL special characters properly escaped.

Examples

Run this code
if (mysqlHasDefault()) {
con <- dbConnect(RMySQL::MySQL(), dbname = "test")

tmp <- sprintf("SELECT * FROM emp WHERE lname = %s", "O'Reilly")
dbEscapeStrings(con, tmp)

dbDisconnect(con)
}

Run the code above in your browser using DataLab