sjdbcGetResultSet {sjdbc} | R Documentation |
Get a ResultSet From Static Java Class
Description
Retreives a ResultSet previously stored in a static instance of SJDBCResultSetUtilities
class as a data.frame
.
Usage
sjdbcGetResultSet(key, unregister = TRUE, default.num.rows = NULL,
start.at.first=TRUE, rows.to.read=-1)
Arguments
key |
a string containing the key into the hash table in |
unregister |
a logical value. If |
default.num.rows |
an integer containing the number of rows. When the ResultSet is of type |
start.at.first |
a logical. If |
rows.to.read |
an integer specifying the maximum number of rows to read. If less than zero, read all rows in the result set. |
Details
This function is called by importJDBC
and usually is not called directly.
Value
returns a data.frame
containing the ResultSet.
See Also
Examples
## Not run:
sjdbcGetResultSet("resultid")
## End(Not run)