fetch-methods(RSQLite)
fetch-methods()所属R语言包:RSQLite
Fetch records from a previously executed query
从先前执行的查询中获取记录
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This method is a straight-forward implementation of the corresponding generic function.
此方法是一种直向前执行相应的通用功能。
Details
详细信息----------Details----------
The RSQLite implementations retrieves all records into a buffer internally managed by the RSQLite driver (thus this memory in not managed by R but its part of the R process), and fetch simple returns records from this internal buffer.
RSQLite实现检索所有记录到一个缓冲区内部管理的RSQLite驱动程序(因此这个内存不管理由R,R进程的一部分),和fetch简单的返回记录从内部缓冲区。
方法----------Methods----------
参考文献----------References----------
<code>DBI.pdf</code> in the base directory of this package or http://stat.bell-labs.com/RS-DBI.
参见----------See Also----------
SQLite, dbConnect, dbSendQuery, dbGetQuery, dbClearResult, dbCommit, dbGetInfo, dbReadTable.
SQLite,dbConnect,dbSendQuery,dbGetQuery,dbClearResult,dbCommit,dbGetInfo,dbReadTable。
实例----------Examples----------
drv <- dbDriver("SQLite")
tfile <- tempfile()
con <- dbConnect(drv, dbname = tfile)
data(USJudgeRatings)
dbWriteTable(con, "jratings", USJudgeRatings)
res <- dbSendQuery(con, statement = paste(
"SELECT row_names, ORAL, DILG, FAMI",
"FROM jratings"))
# we now fetch the first 10 records from the resultSet into a data.frame[现在,我们取前10条记录的结果集到一个数据框]
data1 <- fetch(res, n = 10)
dim(data1)
dbHasCompleted(res)
# let's get all remaining records[让我们所有剩下的记录]
data2 <- fetch(res, n = -1)
dbClearResult(res)
dbDisconnect(con)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|