RODM_close_dbms_connection(RODM)
RODM_close_dbms_connection()所属R语言包:RODM
Close a connection to an Oracle Database
关闭一个连接到Oracle数据库
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function closes a connection to an Oracle Database.
本函数关闭一个连接到Oracle数据库。
用法----------Usage----------
RODM_close_dbms_connection(
database)
参数----------Arguments----------
参数:database
Database ODBC channel identifier returned from a call to RODM_open_dbms_connection
数据库的ODBC通道标识符返回调用RODM_open_dbms_connection
Details
详细信息----------Details----------
This functions closes an Oracle Database ODBC channel by calling the RODBC function: odbcClose.
此功能关闭Oracle数据库的ODBC通道,通过调用RODBC功能:odbcClose。
值----------Value----------
None.
无。
(作者)----------Author(s)----------
Pablo Tamayo <a href="mailto:pablo.tamayo@oracle.com">pablo.tamayo@oracle.com</a>
Ari Mozes <a href="mailto:ari.mozes@oracle.com">ari.mozes@oracle.com</a>
参考文献----------References----------
Oracle Data Mining Administrator's Guide 11g Release 1 (11.1) http://download.oracle.com/docs/cd/B28359_01/datamine.111/b28130/toc.htm
参见----------See Also----------
RODM_open_dbms_connection
RODM_open_dbms_connection
实例----------Examples----------
# Given a database user rodm, establish a connection to the orcl11g[给定一个数据库用户RODM,建立一个连接到orcl11g]
# database.[数据库。]
# The database user would need privileges as described above, and could[数据库用户将需要如上所述的特权,并且可能]
# have been created in a fashion similar to:[已经创造了一个类似的方式:]
# grant create session, create table, create view, create mining model, [授予创建会话,创建表,创建视图,创建挖掘模型,]
# unlimited tablespace to rodm identified by rodm;[UNLIMITED TABLESPACE RODM确定的RODM;]
## Not run: [#不运行:]
DB <- RODM_open_dbms_connection(dsn="orcl11g", uid="rodm", pwd="rodm")
# Close the connection to the database.[关闭到数据库的连接。]
RODM_close_dbms_connection(DB)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|