QueryTagpublic class QueryTag extends DBTag This class is a custom action for executing a SQL SELECT statement.
The statement must be defined in the body of the action. It can
contain ? place holders, replaced by the value of
elements before execution. The number and order of place holders must
match the number and order of elements in the body. |
Methods Summary |
---|
public java.lang.Object | execute(SQLCommandBean sqlCommandBean)Executes the SQL command as a query and returns a Vector
with Row objects.
return sqlCommandBean.executeQuery();
|
|