Fetch the DataSHIELD operation result.

# S4 method for OpalResult
dsFetch(res)

Arguments

res

OpalResult-class object.

Value

TRUE if table exists.

Examples

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)"))
length <- dsFetch(res)
dsDisconnect(con)
}