ROracle (version 1.3-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, ...)

Arguments

object

a driver, connection or result set object.

currently unused.

Value

description of object.

References

For the Oracle Database documentaion see http://www.oracle.com/technetwork/indexes/documentation/index.html.

See Also

Oracle, dbConnect, dbSendQuery, dbGetQuery, dbClearResult, dbCommit, dbGetInfo, dbGetInfo.

Examples

Run this code
# NOT RUN {
  
# }
# NOT RUN {
    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