ClickhouseResult-class {RClickhouse} | R Documentation |
Class ClickhouseResult
Description
Clickhouse's query results class. This classes encapsulates the result of an SQL
statement (either select
or not).
Usage
## S4 method for signature 'ClickhouseResult'
dbFetch(res, n = -1, ...)
## S4 method for signature 'ClickhouseResult'
dbClearResult(res, ...)
## S4 method for signature 'ClickhouseResult'
dbHasCompleted(res, ...)
## S4 method for signature 'ClickhouseResult'
dbGetStatement(res, ...)
## S4 method for signature 'ClickhouseResult'
dbIsValid(dbObj, ...)
## S4 method for signature 'ClickhouseResult'
dbGetRowCount(res, ...)
## S4 method for signature 'ClickhouseResult'
dbGetRowsAffected(res, ...)
## S4 method for signature 'ClickhouseResult'
dbColumnInfo(res, ...)
Arguments
res |
An object inheriting from DBIResult. |
... |
Other arguments passed on to methods. |
[Package RClickhouse version 0.6.9 Index]