Learn R Programming

ROracle (version 1.1-5)

summary-methods: Summarize an Oracle object

Description

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

Arguments

obj
a driver or connection or result set object.

Value

  • description of object.

References

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

Details

This describes the object.

See Also

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

Examples

Run this code
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