Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试调用从 Netbeans 6.1 的 iReport 插件向导接收参数的存储过程,如何才能成功完成此任务?
其他技术细节是:使用 MySQL 5.0.51a-17 和 iReport Designer 1.0。
谢谢!
更新:我投票结束这个问题,因为它是从 2008 年开始的。
直接编辑myreport.jrmxl文件:
myreport.jrmxl
<jasperReport ...> ... <parameter name="someParam" class="java.lang.String"/> <queryString> <![CDATA[call myproc($P{someParam})]]> </queryString> ... </jasperReport>