如何在jxls 2.x中的jdbc.query中设置参数$ {}

时间:2016-02-26 14:55:21

标签: jxls

我曾经使用过jxls v.1.x.现在我研究v.2.x. 我想将参数从上下文设置为sql查询

我在xls-template中: jx:each(items =“jdbc.query('select * from table1 where field1<?',$ {val1})”var =“table1”lastCell =“D4”)

但它不起作用。如果我设置了恒定值insted $ {val1},那么它正在工作。

如何设置从'context'到jdbc.query()

的参数值

1 个答案:

答案 0 :(得分:1)

试试这个jx:each(items="jdbc.query('select * from table1 where field1 < ?',val1)" var="table1" lastCell="D4")