public class ResultSupport
extends java.lang.Object
Supports the creation of a jakarta.servlet.jsp.jstl.sql.Result object from a source java.sql.ResultSet object. A Result object makes it much easier for page authors to access and manipulate the data resulting from a SQL query.
Constructor and Description |
---|
ResultSupport() |
Modifier and Type | Method and Description |
---|---|
static Result |
toResult(java.sql.ResultSet rs)
Converts a
ResultSet object to a Result object. |
static Result |
toResult(java.sql.ResultSet rs,
int maxRows)
Converts
maxRows of a ResultSet object to a Result object. |
public static Result toResult(java.sql.ResultSet rs)
ResultSet
object to a Result
object.rs
- the ResultSet
objectResult
object created from the ResultSet
public static Result toResult(java.sql.ResultSet rs, int maxRows)
maxRows
of a ResultSet
object to a Result
object.rs
- the ResultSet
objectmaxRows
- the maximum number of rows to be cached into the Result
object.Result
object created from the ResultSet
, limited by maxRows