Package javax.servlet.jsp.jstl.sql
Class ResultSupport
- java.lang.Object
-
- javax.servlet.jsp.jstl.sql.ResultSupport
-
public class ResultSupport extends java.lang.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.
-
-
Constructor Summary
Constructors Constructor Description ResultSupport()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Result
toResult(java.sql.ResultSet rs)
Converts aResultSet
object to aResult
object.static Result
toResult(java.sql.ResultSet rs, int maxRows)
ConvertsmaxRows
of aResultSet
object to aResult
object.
-
-
-
Method Detail
-
toResult
public static Result toResult(java.sql.ResultSet rs)
Converts aResultSet
object to aResult
object.- Parameters:
rs
- theResultSet
object- Returns:
- The
Result
object created from theResultSet
-
toResult
public static Result toResult(java.sql.ResultSet rs, int maxRows)
ConvertsmaxRows
of aResultSet
object to aResult
object.- Parameters:
rs
- theResultSet
objectmaxRows
- the maximum number of rows to be cached into theResult
object.- Returns:
- The
Result
object created from theResultSet
, limited bymaxRows
-
-