如何在 jxls 2.x 中的 jdbc.query 中设置参数 ${}
How can i set parameters ${} in jdbc.query in jxls 2.x
我以前jxls v.1.x。现在我学习v.2.x。
我想将上下文中的参数设置为 sql query
我在 xls 模板中有:
jx:each(items="jdbc.query('select * from table1 where field1 < ?',${val1})" var="table1" lastCell="D4")
但它不起作用。如果我设置常量值 insted ${val1},那么它就可以工作了。
如何将参数值从 'context' 设置为 jdbc.query()
试试这个 jx:each(items="jdbc.query('select * from table1 where field1 < ?',val1)" var="table1" lastCell="D4")
我以前jxls v.1.x。现在我学习v.2.x。 我想将上下文中的参数设置为 sql query
我在 xls 模板中有: jx:each(items="jdbc.query('select * from table1 where field1 < ?',${val1})" var="table1" lastCell="D4")
但它不起作用。如果我设置常量值 insted ${val1},那么它就可以工作了。
如何将参数值从 'context' 设置为 jdbc.query()
试试这个 jx:each(items="jdbc.query('select * from table1 where field1 < ?',val1)" var="table1" lastCell="D4")