How to create PDF reports using PL/SQL

ぐ巨炮叔叔 提交于 2019-12-19 04:07:31

问题


Is there PL/SQL package or engine available which would enable the creation of PDF reports from stored procedures?


回答1:


If your looking for a freeware or open source package, their is this. I've not used it, but it has good reviews. lPL_FPDF If you have a budget, then this, which enterprise class product, meaning excellent documentation, is available. plpdf.

The commercial package is written in native Pl/SQL so will be very easy to use. The open source package I don't know.

If your running in an Oracle environment, with any of the reports servers, then all of then support PDF being emitted both to the printer and stored in the db as blobs. Its a fairly tedious task to configure it, from what I remember.

Hope that gets you started. B




回答2:


PL_FPDF has many problems, such as 32k page limitations and many bugs. I've modified the code and renamed it to wpdf. You can get wpdf here: http://databaseknowledge.com/services.htm




回答3:


You may want to look into Oracle Application Express to create PDF reports, but depending on how the output is coming out from your stored procedure, it may not be an easy tool to use.

You can find directions here: http://www.oracle.com/technology/obe/apex/apex31nf/apex31rpt.htm#t1




回答4:


Oracle Application Express - printing features not to be forgotten. You can use interactive reporting from browser and decide what you need to print. You can apply XSLT also and decide the printing format.



来源:https://stackoverflow.com/questions/1498217/how-to-create-pdf-reports-using-pl-sql

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!