dbReadTable-methods(RPostgreSQL)
dbReadTable-methods()所属R语言包:RPostgreSQL
Convenience functions for Importing/Exporting DBMS tables
便利DBMS表的导入/导出功能
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These functions mimic their R/S-Plus counterpart get, assign, exists, remove, and objects, except that they generate code that gets remotely executed in a database engine.
这些功能模仿他们的R / S-PLUS对应get,assign,exists,remove和objects,除了他们所产生的代码被远程执行在一个数据库引擎。
值----------Value----------
A data.frame in the case of dbReadTable; otherwise a logical indicating whether the operation was successful.
Adata.frame的情况下,dbReadTable,否则逻辑指示操作是否成功。
方法----------Methods----------
注意----------Note----------
dbWriteTable creates additional column in the database, while dbReadTable reads that column by default. So, it is not symmetrical in its current implementation. the backend raw_names may change in future versions.
dbWriteTable创建额外的列在数据库中,而dbReadTable读取默认情况下,该列。因此,它是在其当前的实现不是对称的。在的后端raw_names可能会改变在未来的版本中。
参考文献----------References----------
<code>DBI.pdf</code> in the base directory of this package or http://stat.bell-labs.com/RS-DBI.
参见----------See Also----------
PostgreSQL, isSQLKeyword, dbDriver, dbConnect, dbSendQuery, dbGetQuery, fetch, dbCommit, dbGetInfo, dbListTables, dbReadTable.
PostgreSQL,isSQLKeyword,dbDriver,dbConnect,dbSendQuery,dbGetQuery,fetch,dbCommit,dbGetInfo,dbListTables,dbReadTable。
实例----------Examples----------
conn <- dbConnect("PostgreSQL", dbname = "wireless")
if(dbExistsTable(con, "frame_fuel")){
dbRemoveTable(conn, "frame_fuel")
dbWriteTable(conn, "frame_fuel", fuel.frame)
}
if(dbExistsTable(conn, "RESULTS")){
dbWriteTable(conn, "RESULTS", results2000, append = T)
else
dbWriteTable(conn, "RESULTS", results2000)
}
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|