Learn R Programming

DatabaseConnector (version 6.3.2)

dbClearResult,DatabaseConnectorJdbcResult-method: Clear a result set

Description

Frees all resources (local and remote) associated with a result set. This step is mandatory for all objects obtained by calling dbSendQuery() or dbSendStatement().

DBI:::methods_as_rd("dbClearResult")

Usage

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

Value

dbClearResult() returns TRUE, invisibly, for result sets obtained from both dbSendQuery()

and dbSendStatement().

Arguments

res

An object inheriting from DBIResult.

...

Other arguments passed on to methods.

See Also