| |
CREATE PROCEDURE p1(IN a int, IN b Boolean) specific specefic2 EXTERNAL NAME
examplesjar:testingForProcedure:: verify(Integer,Boolean)
Where,
Specefic2 is the specific name of procedure for unique identification.
examplesjar is the name of the jar where java class will be found.
testingForProcedure is the name of the class.
verify(Integer,Boolean) is the name of the method along with parameter list.
|