Search results
PdfGen - An Oracle PL/SQL PDF Generator. Create an attractive report from a SQL query with capabilities similar to those available in sqlplus report generator, but with control over fonts, margins, page size, and orientation. (See samples directory for PDF files it produced.)
30 wrz 2009 · Is there PL/SQL package or engine available which would enable the creation of PDF reports from stored procedures?
2 cze 2021 · Using the new SQL scalar function GENERATE_PDF to create PDF in the IFS from spool files
11 kwi 2012 · as_pdf3.write( 'Anton, testing 1,2,3 with Cambria', -1, -1 ); as_pdf3.set_font( 'CambriaMath', 15 ); -- fontname. as_pdf3.write( 'Anton, testing 1,2,3 with CambriaMath', -1, -1 ); --. as_pdf3.set_font( 'helvetica', 12 ); as_pdf3.write( 'Or if you need to generate a PDF report in Chinese:', -1, 520 );
Pl_fpdf is a pl/sql package that provides functions and procedure to produce pdf files from Oracle database. This code gives you the same functions than FPDF, except that it converts all the images you need in PNG.
20 paź 2010 · But with this package you can generate a PDF-document with a few lines of PL/SQL code. It’s small because it lacks some functionality. It can only use the standard PDF fonts, and that means that it can only use the WINDOWS-1252 encoding/characterset.
6 sty 2009 · There is an open source-tool called PL-jrxml2pdf ( https://sourceforge.net/projects/pljrxml2pdf/) with also generates PDF's from pure PL/SQL. Maybe its worth adding to the question as option.