File: isSQLKeyword_DBIObject_character.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-- 341 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#' @rdname hidden_aliases
#' @usage NULL
isSQLKeyword_DBIObject_character <- function(dbObj, name, keywords, case, ...) {
  isSQLKeyword.default(name, keywords, case)
}
#' @rdname hidden_aliases
setMethod(
  "isSQLKeyword",
  signature(dbObj = "DBIObject", name = "character"),
  isSQLKeyword_DBIObject_character,
  valueClass = "logical"
)