dbEscapeStrings(RMySQL)
dbEscapeStrings()所属R语言包:RMySQL
Escape SQL-special characters in strings
转义SQL字符串中的特殊字符
译者:生物统计家园网 机器人LoveR
描述----------Description----------
is expected to be sorted by the grouping field.
预计由该分组字段进行排序。
用法----------Usage----------
dbEscapeStrings(con, strings, ...)
参数----------Arguments----------
参数:con
a connection object (see dbConnect).
一个连接对象(见dbConnect“)。
参数:strings
a character vector.
字符向量。
参数:...
any additional arguments to be passed to the dispatched method.
任何额外的参数传递给被派遣的方法。
Details
详细信息----------Details----------
dbEscapeStrings
dbEscapeStrings
Currently, only the MySQL driver implements this method.
目前,只有MySQL驱动程序实现此方法。
值----------Value----------
A character vector with SQL special characters properly escaped.
正确地转义字符向量与SQL特殊字符。
参见----------See Also----------
MySQL dbSendQuery fetch
MySQLdbSendQueryfetch
实例----------Examples----------
tmp <- sprintf("select * from emp where lname = %s", "O'Reilly")
sql <- dbEscapeString(con, tmp)
dbGetQuery(con, sql)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|