File: dbRemoveTable_DBIConnection_Id.R

package info (click to toggle)
dbi 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,740 kB
  • sloc: makefile: 2
file content (12 lines) | stat: -rw-r--r-- 301 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#' @rdname hidden_aliases
#' @usage NULL
dbRemoveTable_DBIConnection_Id <- function(conn, name, ...) {
  dbRemoveTable(conn, dbQuoteIdentifier(conn, name), ...)
}
#' @rdname hidden_aliases
#' @export
setMethod(
  "dbRemoveTable",
  signature("DBIConnection", "Id"),
  dbRemoveTable_DBIConnection_Id
)