Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
248 views

Calling a function that returns a refcursor

I am using Postgresql 8.3 and have the following simple function that will return a refcursor to the client CREATE OR REPLACE FUNCTION function_1() RETURNS refcursor AS $$ DECLARE ...
3
votes
3answers
684 views

Column names in an empty Oracle REF CURSOR

In PL/SQL, I can use a trick like this one here to find out name/value pairs for every column in a row from a REF CURSOR: TO_CHAR of an Oracle PL/SQL TABLE type That's an awesome trick. But it ...
2
votes
2answers
464 views

How to test an Oracle Stored Procedure with RefCursor return type?

I'm looking for a good explanation on how to test an Oracle stored procedure in SQL Developer or Embarcardero Rapid XE2. Thank you.
2
votes
2answers
689 views

How to call a stored procedure using a ref cursor on oracle with squirrel

I'm trying to do the same request i'm using in Toad (the store proc signature is two varchar2 parameter and one REF CURSOR parameter) Here is what I do with Toad variable myCursor refcursor; EXEC ...
2
votes
4answers
4k views

Convert Oracle stored procedure using REF_CURSOR and package global variable to Postgresql or MySQL

This package uses two unique features of Oracle, REF_CURSOR and a package global variable. I would like to port the functionality from Oracle to Postgresql or MySQL. PACKAGE tox IS ...
1
vote
0answers
119 views

JDBC data types

Many RDBMS support "CURSOR" types of some sort. Those types are mostly useful when returned from stored procedures. An example in Oracle: TYPE t_cursor_type IS REF CURSOR; CREATE PROCEDURE p (c OUT ...
1
vote
1answer
94 views

DAAB and ref cursors, Why no up to date tutorials?

Why are there no up to date tutorials books, or anything like that online for working with enterprise library 5.0 and Oracle ref cursors? Is there no one on Earth who needs help with that? I am ...
1
vote
1answer
222 views

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 procedure parameters with type OUT SYS_REFCURSOR which, as far as I understand, its purpose is to 'return ...
1
vote
1answer
1k views

how to check if a ref cursor returns data from a pl/sql procedure

I would like to know how to check if a ref cursor returns data. Let's say I have the following code in a PL/SQL package: type refcursor is ref cursor; procedure Foo(cursorresult out refcursor) is ...
1
vote
4answers
1k views

Returning ref cursor from oracle stored procedure by using DAAB from MS EntLib 4.1

Is it possible to get ref cursor from oracle stored procedure by using DAAB from Microsoft Enterprise Library 4.1?
1
vote
2answers
562 views

DMBS_SQL.to_refcursor equivalent in Oracle 10g

I have a coworker who came across DBMS_SQL.to_refcursor which would be a great solution for him to pass back the refcursor he needs, however we are running Oracle 10g and this feature is only ...
1
vote
1answer
1k views

How to declare ref cursor parameter to a object method?

I'm a little bit new to PL/SQL and need something that looks a bit like this: create type base as object ( unused number, member procedure p( c in ref cursor ) ) not final; create type child1 ...
1
vote
3answers
2k views

Using a ref cursor as input type with ODP.NET

I'm trying to use a RefCursor as an input parameter on an Oracle stored procedure. The idea is to select a group of records, feed them into the stored procedure and then the SP loops over the input ...
0
votes
0answers
42 views

Dataset with multiple Oracle ref cursors

I have an Oracle stored procedure that returns multiple ref cursors as output parameters. I'm using the typed dataset to access oracle data and Oracle's ODP.NET provider. I used to drag and drop any ...
0
votes
2answers
116 views

How to see refcursor result/output in Oracle SQL Developer? [closed]

Possible Duplicate: Best way/tool to get the results from an oracle package procedure Oracle SQL Developer: Show REFCURSOR Results in Grid? I am new to Oracle SQL Developer. I am using ...
0
votes
1answer
88 views

Visual Basic with Oracle 11g using REF CURSOR NOT working

I am using Visual Basic 6 to connect to Oracle 11g. Yes, I can successfully connect to the database. The problem is to receive the recordsets from the database. I have created an oracle package like ...
0
votes
1answer
155 views

NHibernate get data from Stored Procedure through ref_cursor

I'm also having trouble to get data from Stored Procedure through ref_cursor . Maybe you could advise how did you resolve that issue - My error : "ORA-06553: PLS-306: wrong number or types of ...
0
votes
0answers
63 views

Does any SQL standard include a REF CURSOR or TABLE type definition?

I always find it hard to read the rather abstract SQL standard specification, for instance this document here: http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt I'm wondering, is any of the ...
0
votes
1answer
268 views

How to Iterate through OracleDbType.RefCursor result set

I am currently a little stuck right now in my implementation of MVC 2 website that gets data from an Oracle Database... Right now I want to Iterate through a RefCursor out parameter and go threw all ...
0
votes
1answer
2k views

How to call an Oracle function with a Ref Cursor as Out-parameter from C#?

I'm using a product that provides a database API based on Oracle functions and I'm able to call functions via ODP.NET in general. However, I can't figure out, how to call a function that includes a ...
0
votes
4answers
1k views

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 them using stored procedure PROCEDURE getrows(box IN VARCHAR2, row_no IN NUMBER, work_dtls_out ...
0
votes
4answers
606 views

Condition for array with string as keys

My PL/SQL procedure returns a cursor. It always returns data. I fetch (oci_fetch_assoc) it and save it in an array. If results were found the keys of the array will be strings. If the cursor didn't ...
0
votes
2answers
2k views

CodeIgniter and PostgreSQL - Retrieving data from Function returning refcursor

I have a PostgreSQL function that selects data and returns it via a refcursor, similar to the following declaration: CREATE OR REPLACE FUNCTION my_function() RETURNS refcursor AS ... How do I ...
0
votes
2answers
787 views

Terrible parameter problem with Oracle RefCursor

I'm using ODP.NET (migrating from Microsoft's provider), and I have got stuck on a stored procedure that returs a refcursor. I have the following PL/SQL procedure (I have changed it a little bit to ...
0
votes
1answer
4k views

Returning multiple ref cursors from Oracle Procedure using DAAB & C#

I want to return data from an Oracle procedure to populate some Label controls. The procedure accepts 26 input parameters (search variable) and returns 3 output cursors. I have been successful ...
0
votes
3answers
4k views

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 to pass a cursor as the return value... FUNCTION end_spool RETURN t_spool AS ...
-1
votes
2answers
108 views

Using for loop for retrieving data from a cursor variable in Oracle 11g

Can it be possible to fetch data from a cursor variable using for loop. my code is declare type cursor_variable is ref cursor; v_myCursor cursor_variable; begin open v_mycursor for select ...