Handling exceptions from JAVA in PL/SQL
Hello, i`m trying to run java class in Oracle DB. I have loaded this class with loadjava then i have created pl/sql function to call it. In my java class i got one try-catch statement. When i`m executing pl/sql function i`m not getting exception from try-catch stm and i know that my class isn`t working correctly. Can someone help me? It`s very important for me.
try{
//some code
}catch(Exception e)
e.printStackTrace(); <--- i would like to get this error in sqlplus
}
if need i can include full code.
Edited by: Rado_mir on 2013-06-07 00:04