Interface SQLExecutionTag
-
- All Known Implementing Classes:
QueryTag,QueryTagSupport,UpdateTag,UpdateTagSupport
public interface SQLExecutionTagThis 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>. Its
addSQLParameter()method is called by nested parameter actions (such as <sql:param>) to substitutePreparedStatementparameter values for "?" parameter markers in the SQL statement of the enclosingSQLExecutionTagaction.The given parameter values are converted to their corresponding SQL type (following the rules in the JDBC specification) before they are sent to the database.
Keeping track of the index of the parameter values being added is the responsibility of the tag handler implementing this interface
The
SQLExcecutionTaginterface is exposed in order to support custom parameter actions which may retrieve their parameters from any source and process them before substituting them for a parameter marker in the SQL statement of the enclosingSQLExecutionTagaction
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddSQLParameter(java.lang.Object value)Adds a PreparedStatement parameter value.
-
-
-
Method Detail
-
addSQLParameter
void addSQLParameter(java.lang.Object value)
Adds a PreparedStatement parameter value. Must behave as if it callsPreparedStatement.setObject(int, Object). For each tag invocation, the integral index passed logically tosetObject()must begin with 1 and must be incremented by 1 for each subsequent invocation ofaddSQLParameter(). The Object logically passed tosetObject()must be the unmodified object received in the value argument.- Parameters:
value- thePreparedStatementparameter value
-
-