I am looking to return a table of results from an Oracle function. Using a cursor would be easiest, but the application I have to work this into will not accept a cursor as a return value. The alternative is to create a type (likely wrapped in a package) to go along with this function. However, it seems somewhat superfluous to create several types (I have 4+ functions to write) just so I can return table results. Is there an alternative that I am missing?
|
1
|
|||||
|
|
|
UPDATE: See the first comment for TABLE solution withou limit of size. Return an VARRAY or use a PIPELINED function to query from them.
|
||||||||
|
|
|
You could always return XML from your function if that suits the application developers. XML can be generated a number of ways in Oracle, depending on what you have installed and what version you're using. XMLTYPE is very useful in certain contexts, and can be generated from SQL using the XMLElement, XMLAttributes, XMLAgg, etc. built-in functions. If the client doesn't support XMLTYPE it can easily be cast to CLOB values. Perhaps the simplest, though not the best (IMO) option is to use the dbms_xmlgen package:
Output:
That gives you your "table" results in a single CLOB value. |
||
|
|
