dbBuildTableDefinition(RMySQL)
dbBuildTableDefinition()所属R语言包:RMySQL
Build the SQL CREATE TABLE definition as a string
生成的SQL CREATE TABLE定义为一个字符串
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Build the SQL CREATE TABLE definition as a string for the input data.frame
生成的SQL CREATE TABLE定义为一个字符串的输入数据框
用法----------Usage----------
dbBuildTableDefinition(dbObj, name, obj, field.types = NULL, row.names = TRUE, ...)
参数----------Arguments----------
参数:dbObj
any DBI object (used only to dispatch according to the engine (e.g., MySQL, Oracle, PostgreSQL, SQLite)
任何的DBI的对象(仅用于调度的发动机(例如,MySQL,甲骨文和PostgreSQL,SQLite的)
参数:name
name of the new SQL table
新的SQL表的名称
参数:obj
an R object coerceable to data.frame for which we want to create a table
以数据框R对象coerceable的,我们要创建一个表
参数:field.types
optional named list of the types for each field in obj
可选命名的类型列表中的每个字段obj
参数:row.names
logical, should row.name of value be exported as a row\_names field? Default is TRUE
逻辑,应row.namevalue导出为一个row\_names域?默认值是TRUE
参数:...
reserved for future use
保留为将来使用
Details
详细信息----------Details----------
The output SQL statement is a simple CREATE TABLE with suitable for dbGetQuery
输出SQL语句是一个简单的CREATE TABLE适合dbGetQuery
值----------Value----------
An SQL string
一个SQL字符串
参考文献----------References----------
<code>DBI.pdf</code> in the base directory of this package or http://stat.bell-labs.com/RS-DBI.
参见----------See Also----------
MySQL, dbConnect, dbSendQuery, dbGetQuery, fetch, dbCommit, dbGetInfo, dbReadTable.
MySQL,dbConnect,dbSendQuery,dbGetQuery,fetch,dbCommit,dbGetInfo,dbReadTable。
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|