Learn R Programming

DSOpal (version 1.4.0)

dsGetInfo,OpalResult-method: Get result info

Description

Get the information about a command (if still available).

Usage

# S4 method for OpalResult
dsGetInfo(dsObj, ...)

Value

The result information, including its status.

Arguments

dsObj

OpalResult-class class object

...

Unused, needed for compatibility with generic.

Examples

Run this code
if (FALSE) {
con <- dbConnect(DSOpal::Opal(), "server1",
  "username", "password", "https://opal.example.org")
dsAssignExpr(con, "C", as.symbol("c(1, 2, 3)"))
res <- dsAggregate(con, as.symbol("length(C)"))
dsGetInfo(res)
dsDisconnect(con)
}

Run the code above in your browser using DataLab