找回密码
 注册
查看: 408|回复: 0

R语言 RODBC包 sqlCopy()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-9-27 22:49:19 | 显示全部楼层 |阅读模式
sqlCopy(RODBC)
sqlCopy()所属R语言包:RODBC

                                        ODBC Copy
                                         ODBC复制

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

Functions to copy tables or result sets from one database to another.
复制的功能表或结果集从一个数据库到另一个。


用法----------Usage----------


sqlCopy(channel, query, destination, destchannel = channel,
        verbose = FALSE, errors = TRUE, ...)

sqlCopyTable(channel, srctable, desttable, destchannel = channel,
             verbose = FALSE, errors = TRUE)



参数----------Arguments----------

参数:channel, destchannel
connection handle as returned by odbcConnect.
返回的连接句柄odbcConnect。


参数:query
any valid SQL statement
任何有效的SQL语句


参数:destination, srctable, desttable
character: a database table name accessible from the connected DSN.
特点:从连接的DSN访问数据库表名。


参数:verbose
Display statements as they are sent to the server?
显示报表,因为它们发送到服务器?


参数:errors
if TRUE halt and display error, else return -1.
如果是TRUE停止并显示错误,否则返回-1。


参数:...
additional arguments to be passed to sqlSave.
额外的参数传递给sqlSave。


Details

详细信息----------Details----------

sqlCopy as is like sqlQuery, but saves the output of query in table destination on channel destchannel.     
sqlCopy像sqlQuery,但在表中保存的输出querydestination通道destchannel。

sqlCopyTable copies the structure of srctable to desttable on DSN destchannel.  This is within the limitations of the ODBC lowest common denominator.  More precise control is possible via sqlQuery.
sqlCopyTable复制srctable的结构desttableDSN destchannel。这是ODBC最小公分母的限制范围内的。更精确的控制是通过sqlQuery。


值----------Value----------

See sqlGetResults.
见sqlGetResults。


(作者)----------Author(s)----------



Michael Lapsley and Brian Ripley




参见----------See Also----------

sqlQuery, sqlSave
sqlQuery,sqlSave


实例----------Examples----------


sqlSave(channel, USArrests, rownames = "state")
query <- paste("select state, murder from usarrests",
               "where rape > 30", "order by murder")
sqlCopy(channel, query, "HighRape", rownames = FALSE)
sqlFetch(channel, "HighRape", rownames = "state", max = 5)
sqlDrop(channel, "HighRape")


转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2024-11-25 16:05 , Processed in 0.023069 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表