how do I execute a function from TOAD for Oracle and bind the result to a data grid
I have a function that takes as one of it's arguments a VARRAY of pl/sql Objects. How do I execute this stored procedure and bind the resultset that it returns to a data grid in TOAD for Oracle? After some searching around, I found the answer to my own problem. Say your varray type was called varchar_pair_array and the objects stored in this array were called varchar_pair_object. varchar_pair_object is a simple object that has two varchars as it's members. Here is the code for executing a proc that takes in a varray of varchar_pair_object (s): DECLARE RetVal SYS_REFCURSOR; a_simplevalue