How to use the component Queries Resources in UCM.
979378Dec 11 2012 — edited Dec 12 2012hi :
In the component ,I need to use in the database query a value in HTML includes Resources.
Example query.htm File
<HTML>
<HEAD>
<META HTTP-EQUIV='Content-Type' content='text/html; charset=iso-8859-1'>
<TITLE>Query Definition Resources</TITLE>
</HEAD>
<BODY>
<@table QueryTable@>
<table border=1><caption><strong>Query Definition Table</strong></caption>
<tr>
<td>name</td>
<td>queryStr</td>
<td>parameters</td>
</tr>
<tr>
<td>QdocInfo</td>
<td>select to_char(sysdate,'YYYY') as sd from dual</td>
<td></td>
</tr>
</table>
<@end@>
</BODY>
</HTML>
How do I call this query to value?
thanks.