toSQLStringSet(AnnotationDbi)
toSQLStringSet()所属R语言包:AnnotationDbi
Convert a vector to a quoted string for use as a SQL value list
作为SQL值列表使用带引号的字符串转换向量
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Given a vector, this function returns a string with each element of the input coerced to character, quoted, and separated by ",".
鉴于一个向量,这个函数返回一个字符串,强迫字符输入的每个元素引用,并用“,”隔开。
用法----------Usage----------
toSQLStringSet(names)
参数----------Arguments----------
参数:names
A vector of values to quote
一个引用值的向量
Details
详情----------Details----------
If names is a character vector with elements containing single quotes, these quotes will be doubled so as to escape the quote in SQL.
如果names是一个含有单引号的元素的特征向量,这些报价将因此一倍,以逃避在SQL报价。
值----------Value----------
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.
一个长度为1的特征向量表示SQL值列表的输入向量。每个元素的单引号和逗号分隔的元素。
注意----------Note----------
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.
不使用sQuote作为该函数生成SQL拟仅用于显示目的。在某些语言环境中,sQuote会产生花哨的报价,这将打破您的SQL。
作者(S)----------Author(s)----------
Herve Pages
举例----------Examples----------
toSQLStringSet(letters[1:4])
toSQLStringSet(c("'foo'", "ab'cd", "bar"))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|