dbListConnections-methods(ROracle)
dbListConnections-methods()所属R语言包:ROracle
List items from Oracle objects
Oracle对象的列表项
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These methods are straight-forward implementations of the corresponding generic functions.
这些方法是直进的相应的通用功能的实现。
参数----------Arguments----------
参数:drv
an OraDriver.
OraDriver。
参数:conn
an OraConnection.
OraConnection。
参数:...
currently not used.
目前未使用。
Details
详细信息----------Details----------
implementation return a list of all associated connections. It shows information about all associated connections.
实现返回一个列表的所有相关联的连接。它显示了所有相关联的连接。
implementation return a list of all associated result sets. It shows information about all associated result sets.
实现返回一个列表的所有相关联的结果集。它显示了所有相关联的结果集。
值----------Value----------
参数:dbListConnections
A list of all connections associated with driver.
与驱动程序的所有连接列表。
参数:dbListResults
A list of all result sets associated with connection.
连接的列表相关联的所有结果集。
参考文献----------References----------
http://www.oracle.com/technetwork/indexes/documentation/index.html.
参见----------See Also----------
Oracle, dbGetInfo, dbColumnInfo, dbDriver, dbConnect, dbSendQuery
Oracle,dbGetInfo,dbColumnInfo,dbDriver,dbConnect,dbSendQuery
实例----------Examples----------
## Not run: [#不运行:]
drv <- dbDriver("Oracle")
con1 <- dbConnect(drv, "scott", "tiger")
res1 <- dbSendQuery(con1, "select * from emp where deptno = 10")
res2 <- dbSendQuery(con1, "select * from emp where deptno = 20")
con2 <- dbConnect(drv, "scott", "tiger")
res3 <- dbSendQuery(con2, "select * from dept")
## get all active statements[#所有活动报表]
for(con in dbListConnections(drv))
for (res in dbListResults(con))
print(dbGetStatement(res))
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|