I am using plsql language for developing the jasper report. When trying to call the below line from Java it throws exception.
Code:
JasperReport report = JasperCompileManager.compileReport(jrmlFileName);
Exception:
No query executer factory registered for the 'plsql' language" .
I am able to load the generated .jasper and export. The below code works when calling the .jasper, but when i am trying to compile the .jrxml file it gives me excpetion. i am stuck with this, my requirement is to change the .jrxml dynamically, so i need to compile the report, when there is a change. Language used is "PLSQL".
Code:
JasperReport jasperReport = (JasperReport) JRLoader.loadObject(fileUrl);
Kindly help to solve this issue.
Recommended Comments