Is it possible to use Oracle PL/SQL Procedure in my JSP Scriptlet code? Is it possible to use Oracle PL/SQL Procedure in my JSP Scriptlet code? oracle oracle

Is it possible to use Oracle PL/SQL Procedure in my JSP Scriptlet code?


PL/SQL is written only in Oracle Database Schema. It is not possible to use it in JSP Scriptlet. Only SQL Statements can be written in Scriptlet.


No it is not possible. Inside JSPs you can only write java code. The reason is that JSPs are compiled to servlet java classes.