Entries from PHP and Oracle: Christopher Jones tagged with 'pl/sql'

Converting REF CURSOR to PIPE for Performance in PHP OCI8 and PDO_OCI

REF CURSORs are common in Oracle's stored procedural language PL/SQL. They let you pass around a pointer to a set of query results. However in PHP, PDO_OCI doesn't yet allow fetching from them. And fetching from REF CURSORS in OCI8...