Learn R Programming

ROracle (version 1.5-1)

summary-methods: Summarize an Oracle object

Description

These methods are straight-forward implementations of the corresponding generic functions.

Usage

# S4 method for OraDriver
summary(object, ...)
# S4 method for ExtDriver
summary(object, ...)
# S4 method for OraConnection
summary(object, ...)
# S4 method for OraResult
summary(object, ...)

Value

description of object.

Arguments

object

a driver, connection or result set object.

...

currently unused.

References

For the Oracle Database documentaion see https://docs.oracle.com/en/.

See Also

Examples

Run this code
  if (FALSE) {
    drv <- dbDriver("Oracle")
    con <- dbConnect(drv, "scott", "tiger")
    res <- dbSendQuery(con, "select * from emp")

    summary(drv)
    summary(con)
    summary(res)
    show(drv)
    show(con)
    show(res)   
  } 

Run the code above in your browser using DataLab