dropTStable(TSdbi)
dropTStable()所属R语言包:TSdbi
Drop (Remove) a Database Table
删除(删除)数据库表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Drop (remove) a database table if it exists.
删除(删除)数据库表,如果它存在。
用法----------Usage----------
dropTStable(con, Table, yesIknowWhatIamDoing=FALSE)
参数----------Arguments----------
参数:con
A database connection.
一个数据库连接。
参数:Table
A character string indicating a table to drop.
一个字符串,指示表下降。
参数:yesIknowWhatIamDoing
logical to help prevent accidents.
逻辑,以帮助防止事故的发生。
Details
详细信息----------Details----------
WARNING: use this function only if you know what you are doing. It may destroy the whole database. The function dropTStable removes the indicated table if it exists on the con. This function will not generally be needed by users. It is used for initializing and testing the database set up, and in many cases does simply if(dbExistsTable(con, Table)) dbRemoveTable(con, Table). It needs to be generic in order to work around the problem that different db engines treat capitalized table names differently. For example, MySQL uses table name Meta while Posgresql converts to meta. A default con is not used on purpose to help avoid accidental use. The arument yesIknowWhatIamDoing defaults to FALSE and must be set to TRUE or the function will return a n error. Beware that dropping tables will likely destory the integrity of the of the database, and would usually only be done when you are intializing a TS database. Database permission may also be set to prevent users from dropping tables. If that is the case, then this function will return a failure error.
警告:使用此功能,只有当你知道你在做什么。它可能会破坏整个数据库。函数dropTStable删除指定的表,如果它存在的con。此功能一般不会被用户所需要的。它是用来初始化和测试数据库的建立,并在许多情况下,if(dbExistsTable(con, Table)) dbRemoveTable(con, Table)。它需要的是通用为了解决这个问题,不同的数据库引擎把大写的表名不同。例如,MySQL使用的表名元,而Posgresql转换为元。不使用的默认con宗旨,以帮助避免意外使用。的arumentyesIknowWhatIamDoing默认FALSE和TRUE或该函数将返回一个错误,必须设置。谨防可能的Destory删除表的数据库的完整性,通常只能做当你intializing的一个TS数据库。数据库的权限,也可以设置,以防止用户删除表。如果是这样的情况下,则该函数将返回一个失败的错误。
值----------Value----------
TRUE
TRUE
参见----------See Also----------
dbConnect, TSdates, TSget, TSput
dbConnect,TSdates,TSget,TSput
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|