dbEscapeStrings-methods(RMySQL)
dbEscapeStrings-methods()所属R语言包:RMySQL
Escape a Character Vector According to SQL rules
根据SQL规则转义字符向量
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Escape SQL-special characters in a character vector according to MySQL rules.
根据MySQL的规则,SQL转义特殊字符的字符向量。
方法----------Methods----------
This method encodes the strings character vector according to the MySQL escape rules and taking into consideration the character set used by the connection (each MySQL connection may be set to use different character sets). Note that the RMySQL package currently does not deal with character set conversions – it uses whatever character encoding the R session is using, but the MySQL runtime library handles this transparently.
这种方法strings字符矢量进行编码,根据MySQL的转义规则,并考虑到连接所使用的字符集(每个MySQL连接可能会被设置为使用不同的字符集)。请注意,RMySQL包目前没有处理的字符集转换 - 它使用的R会话字符编码使用,但MySQL的运行时库处理这种透明。
... currently unused.
...目前未使用。
参见----------See Also----------
MySQL, dbConnect, dbSendQuery, dbGetQuery, fetch, dbNextResult, dbCommit, dbGetInfo, dbReadTable.
MySQL,dbConnect,dbSendQuery,dbGetQuery,fetch,dbNextResult,dbCommit,dbGetInfo,dbReadTable。
实例----------Examples----------
con <- dbConnect(MySQL(),
dbname = "rs-dbi",
client.flag=CLIENT\_MULTI\_STATEMENTS)
tmp <- sprintf("select * from emp where lname =
sql <- dbEscapeString(con, tmp)
dbGetQuery(con, sql)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|