Hi all,
 I am passing a structure(Java Object ) to the oracle procedure in my jsp
using

javaclass1 obj=new javaclass1("toyota",3);
Connection con =null;
CallableStatement cs=null;
cs =con.prepareCall("{call proc1(?)}");
          cs.setObject(1,obj);
          cs.executeQuery();

It is compiling fine , while at the run time it is giving error.
Can anyone please tell me the solution for this, whether i have to make any
modifications in my code, i will be obliged.
regards
Ishfaq
*******************************************************
Ishfaq Ahmad Lone

*******************************************************

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to