我曾经使用过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()
的参数值答案 0 :(得分:1)
试试这个jx:each(items="jdbc.query('select * from table1 where field1 < ?',val1)" var="table1" lastCell="D4")