javax.servlet.jsp.jstl.sql |
Classes and interfaces related to the sql tag library component of the JavaServer Pages Standard Tag Library (JSTL).
This tag library component provides a number of SQL tags which provide basic capabilities to interact with relational databases.
|
Java Source File Name | Type | Comment |
Result.java | Interface | This interface represents the result of a <sql:query>
action. |
ResultImpl.java | Class | This class creates a cached version of a ResultSet.
It's represented as a Result implementation, capable of
returing an array of Row objects containing a Column
instance for each column in the row. |
ResultSupport.java | Class | Supports the creation of a javax.servlet.jsp.jstl.sql.Result object
from a source java.sql.ResultSet object. |
SQLExecutionTag.java | Interface | This interface allows tag handlers implementing it to receive
values for parameter markers in their SQL statements.
This interface is implemented by both <sql:query> and
<sql:update>. |