Hi all
I wanted my PL/SQL to make use of an application to render a report.
I have a java code written. However this java code needs two java classes from the application jar file, QRapplication.jar
example of my java class method,
import java.io.File;
import com.QRSClient;
import com.runtime.eJobInfo;
public class Render_Rpt {
public static byte[] createRpt ( ) {
}
Question: Where can I place this QRapplication.jar so that I can loadjava to Oracle DB successfully?
I have tried to place this jar file to $ORACLE/LIB but it is not working.
Please advise