Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PL/SQL Cursor From JSP

Status
Not open for further replies.

cfm

Programmer
Mar 27, 2001
76
CL
How invoke a PL/SQL Cursor from JSP?

I´need display a cursor in a table.

I have this.

CallableStatement cs = con.prepareCall("{call "+sentencia+"}");

cs.setString(1,"1283582");
cs.registerOutParameter(2,java.sql.Types.VARCHAR);
cs.registerOutParameter(3,java.sql.Types.VARCHAR);
cs.registerOutParameter(4,oracle.jdbc.driver.OracleTypes.CURSOR);
cs.execute();
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top