1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package net.sf.jameleon.sql;
20
21 import net.sf.jameleon.ParamValueTag;
22
23 import org.apache.commons.jelly.JellyTagException;
24 import org.apache.commons.jelly.Tag;
25
26 /***
27 * Used for set value of a sql-param.
28 *
29 * An example might be:
30 * <pre><source>
31 * <sql-update
32 * functionId="Insert a row into test table via a prepared statement with multiple param values"
33 * sqlUpdateSql="insert into test(test_str, test_str2) values(?,?)"/>
34 * <sql-param>
35 * <sql-param-value>text2>/sql-param-value>
36 * <sql-param-value>text3>/sql-param-value>
37 * </sql-param>
38 * </sql-update>
39 * </source></pre>
40 *
41 * @jameleon.function name="sql-param-value"
42 */
43 public class SqlParamValueTag extends ParamValueTag {
44
45 protected void validateParentTag() throws JellyTagException{
46 Tag tag = getParent();
47 if ( ! (tag instanceof SqlParamTag) ) {
48 throw new JellyTagException("This tag can only be imbedded in a sql-param tag.");
49 }
50 }
51
52 }