org.apache.taglibs.standard.tag.el.sql
Class UpdateTag
java.lang.Object
javax.servlet.jsp.tagext.TagSupport
javax.servlet.jsp.tagext.BodyTagSupport
org.apache.taglibs.standard.tag.common.sql.UpdateTagSupport
org.apache.taglibs.standard.tag.el.sql.UpdateTag
- All Implemented Interfaces:
- Serializable, SQLExecutionTag, BodyTag, IterationTag, JspTag, Tag, TryCatchFinally
public class UpdateTag
- extends UpdateTagSupport
Subclass for the JSTL library with EL support.
- Author:
- Hans Bergsten
- See Also:
- Serialized Form
Method Summary |
int |
doStartTag()
Prepares for execution by setting the initial state, such as
getting the Connection |
void |
setDataSource(String dataSourceEL)
|
void |
setSql(String sqlEL)
Setter method for the SQL statement to use for the
query. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
UpdateTag
public UpdateTag()
setDataSource
public void setDataSource(String dataSourceEL)
setSql
public void setSql(String sqlEL)
- Setter method for the SQL statement to use for the
query. The statement may contain parameter markers
(question marks, ?). If so, the parameter values must
be set using nested value elements.
doStartTag
public int doStartTag()
throws JspException
- Description copied from class:
UpdateTagSupport
- Prepares for execution by setting the initial state, such as
getting the
Connection
- Specified by:
doStartTag
in interface Tag
- Overrides:
doStartTag
in class UpdateTagSupport
- Returns:
- EVAL_BODY_BUFFERED
- Throws:
JspException
- if an error occurred while processing this tag- See Also:
Tag.doStartTag()
Copyright © 2008 Mort Bay Consulting. All Rights Reserved.