R/driver-netezza.R

#' @export
#' @rdname DBI-classes
setClass("NetezzaSQL", contains = "OdbcConnection")

#' @export
#' @rdname odbcDataType
#' @usage NULL
setMethod("odbcDataType", "NetezzaSQL",
  function(con, obj, ...) {
    switch_type(
      obj,
      character = varchar(obj),
      logical = "BOOL",
      callNextMethod(con, obj, ...)
    )
  }
)

Try the odbc package in your browser

Any scripts or data that you put into this service are public.

odbc documentation built on Dec. 24, 2025, 9:06 a.m.