Top "Ref-cursor" questions

What is the equivalent of Oracle’s REF CURSOR in MySQL when using JDBC?

In Oracle I can declare a reference cursor... TYPE t_spool IS REF CURSOR RETURN spool%ROWTYPE; ...and use it …

java mysql oracle jdbc ref-cursor
can TYPE be declared of ref cursor rowtype

TYPE ref_cur IS REF CURSOR; ref_cur_name ref_cur; TYPE tmptbl IS TABLE OF ref_cur_name%ROWTYPE; …

sql oracle plsql ref-cursor
How to access the procedure that return setof refcursor from PostgreSQL in Java?

Need to access a procedure that return setof refcursor from PostgreSQL. I am able to access the first object but …

java postgresql ref-cursor
oracle stored procedure - select, update and return a random set of rows

oracle i wish to select few rows at random from a table, update a column in those rows and return …

oracle ref-cursor
How to close a returning cursor in PL/SQL?

I am new to PL/SQL and I just got to cursors in my learning process. I've been seeing stored …

oracle plsql sys-refcursor ref-cursor
Reference cursor and Stored procedures in Oracle

I have written a simple stored procedure in PL/SQL to perform the equivalent of SELECT * FROM tablename Here is …

stored-procedures plsql oracle11g ref-cursor
CURSOR and REF CURSOR as a JDBC data type

Many RDBMS support "CURSOR" types of some sort. Those types are mostly useful when returned from stored procedures. An example …

java oracle jdbc ref-cursor