>From the FAQ at http://technet.oracle.com/tech/java/sqlj_jdbc/

Do Oracle's JDBC drivers support PL/SQL tables/result sets/records/booleans?

No. It is not feasible for Oracle JDBC drivers to support calling arguments
or return values of the PL/SQL types TABLE (now known as indexed-by tables),
RESULT SET, RECORD, or BOOLEAN. There are currently no plans to change this.
Instead people are encouraged to use RefCursor, Oracle Collections and
Structured Object Types.





----- Original Message -----
From: "Kuklani Mahesh" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, June 07, 2000 5:22 PM
Subject: PL/SQL tables


> Hi all,
>     I have a database procedure which gives me a PL/SQL table of records
as
> out parameter and which i need to display it on page.
>
> i.e
>
>   type emp_record is record ( empno  varchar2(4),
>                                            ename  varchar2(20)) ;
>
>   type emp_array is table of emp_record index by binary integer.
>
>    procedure aa( something out emp_array)
>
> Can somebody help me how to run procedures from java which return pl/sql
> tables and how do i display it in jsp
>
> in oracle i can get records by typing emp_array(i).empno and
> emp_array(i).ename.
>
>
> kindly help me out in such a situation.
>
> Thanx in advance
>
> Mahesh.
>
>
===========================================================================
> 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
>

===========================================================================
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