public class ResultSupport extends Object
Supports the creation of a javax.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.
Note that these methods hide any SQLExceptions that are caused and return null - to work around that use org.apache.taglibs.standard.tag.common.sql.ResultImpl directly.
| Modifier and Type | Method and Description |
|---|---|
static TinyResult |
toResult(ResultSet rs)
Converts a
ResultSet object to a Result object. |
static TinyResult |
toResult(ResultSet rs,
int maxRows)
Converts
maxRows of a ResultSet object to a
Result object. |
public static TinyResult toResult(ResultSet rs)
ResultSet object to a Result object.rs - the ResultSet objectResult object created from the
ResultSetpublic static TinyResult toResult(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 maxRowsCopyright © 2017. All rights reserved.