dbGetResult {Rdbi} | R Documentation |
dbGetResult
is a generic function that, when called on a result
object, returns any tuples associated with the object.
dbGetResult(result, as.matrix = FALSE)
result |
A query result object. |
as.matrix |
A boolean to indicate whether the results will be returned as a matrix |
Fetches the results of a query and returns a dataframe. Non-character types should probably be converted to the appropriate numeric or logical type. A generic type conversion interface is still needed.
A dataframe with the results.
Timothy H. Keitt