-
Details Needed for Using Java Stored Procedure (3 messages)
- Posted by: Ashok Srinivasan
- Posted on: November 21 2008 02:46 EST
AnyBody,Provide how to use Java Stored Procedure in Oracle Database.Threaded Messages (3)
- CallableStatement by tom tom on November 28 2008 03:26 EST
- Re: CallableStatement by Rohan Walia on December 10 2008 23:30 EST
- Details for Storing java Class in Oracle database and Access by Ashok Srinivasan on December 13 2008 09:17 EST
-
CallableStatement[ Go to top ]
- Posted by: tom tom
- Posted on: November 28 2008 03:26 EST
- in response to Ashok Srinivasan
try{ int age = 39; String poetName = "Ashok Srinivasan"; CallableStatement proc = connection.prepareCall("{ call set_death_age(?, ?) }"); proc.setString(1, poetName); proc.setInt(2, age); cs.execute(); }catch (SQLException e){ // ....} -
Re: CallableStatement[ Go to top ]
- Posted by: Rohan Walia
- Posted on: December 10 2008 23:30 EST
- in response to tom tom
Thats pretty right. You use callable statement to call stored proc.. -
Details for Storing java Class in Oracle database and Access[ Go to top ]
- Posted by: Ashok Srinivasan
- Posted on: December 13 2008 09:17 EST
- in response to Ashok Srinivasan
Thanks For Your Reply. I have done the Mistake in giving the Subject and Message actually. My Actual Question is: Details Needed for Storing the Java Class in Oracle Database as Object and accessing the methods through Oracle SQL or PL/SQL..