Entries from PHP and Oracle: Christopher Jones tagged with 'performance'

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...

Oracle 11g Result Caching and PHP OCI8

Oracle Database 11g introduced "server-side"and "client-side" result caches. The database cache is enabled with the RESULT_CACHE_MODE database parameter, which has several modes. With the default mode, queries for which you want results to be cached need a hint added: $s...

Speeding up DBMS_OUTPUT in PHP OCI8

Immediately after OOW, Alison and I have got straight into updating the Underground PHP & Oracle Manual. We've had our heads right down. Stay tuned. We've still got a few items on our ToDo list but the new, improved version...