ok, so i'm wondering if there is a way to run a stored procedure with php and oracle, and return x rows without using cursers. Can anyone shed some like on this for me? Point me to some reference or something? Thanks much
Dan
well you will have to use cursors in your PL/SQL, but if you don't want to return cursors to php you can output the results to variable and parse that in php. I often have the procedure output HTML and have php just echo it.