I'm doing the following but it doesnt work
select package_name.function_name(param,param) from dual
I'm calling a function that returns a cursor so im guessing "from dual" is the problem
is there another way of doing it?
|
I'm doing the following but it doesnt work
I'm calling a function that returns a cursor so im guessing is there another way of doing it?
| ||||
|
feedback
|
|
I presume you mean a Ref Cursor. This is a PL/SQL construct which acts as a pointer to a set of records returned by a query. This means it has to be interpreted by the client which runs the query. For instance, we can map a Ref Cursor to a JDBC or ODBC ResultSet. There is certainly nothing wrong with your basic statement. Here is a function similar to your own:
I can easily call this in a wider PL/SQL block:
However, SQL*PLus can handle CURSOR constructs natively:
This statement also runs in SQL Developer, although the result set is laid out in an ugly fashion. So, if you are having problems with your function, the questions are:
Having read your other question on this topic I thought the problem might be due to the use of a User-Defined Ref Cursor (rather than the built-in). However, that doesn't make any difference. This packaged function:
Still works...
| |||||||
feedback
|
|
have you tried:
this would have to be from within a test block or a stored procedure. | |||
|
feedback
|
|
You can do this via a refcursor call or populate a user defined table and return it as follows:
you can also use the 'table' if you are passing back a table collection as such
| |||
feedback
|
sys_refcursorand the function doesn't have any unpleasant side-effects... – Alex Poole Jan 6 '11 at 12:30