Learn R Programming

RAthena (version 2.6.3)

AthenaResult: Athena Result Methods

Description

Implementations of pure virtual functions defined in the DBI package for AthenaResult objects.

Returns AWS Athena Statistics from execute queries DBI::dbSendQuery

Usage

# S4 method for AthenaResult
dbClearResult(res, ...)

# S4 method for AthenaResult dbFetch(res, n = -1, ...)

# S4 method for AthenaResult dbHasCompleted(res, ...)

# S4 method for AthenaResult dbIsValid(dbObj, ...)

# S4 method for AthenaResult dbGetInfo(dbObj, ...)

# S4 method for AthenaResult dbColumnInfo(res, ...)

dbStatistics(res, ...)

# S4 method for AthenaResult dbStatistics(res, ...)

# S4 method for AthenaResult dbGetStatement(res, ...)

Value

dbStatistics() returns list containing Athena Statistics return from paws.

Arguments

res

An object inheriting from DBI::DBIResult.

...

Other arguments passed on to methods.

n

maximum number of records to retrieve per fetch. Use n = -1 or n = Inf to retrieve all pending records. Some implementations may recognize other special values.

dbObj

An object inheriting from DBI::DBIResult, DBI::DBIConnection, or DBI::DBIDriver.