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

Reply via email to