--TEST-- Oracle Database 12c Implicit Result Sets: alternating oci_fetch_* calls --SKIPIF-- true, 'timesten' => false); // test runs on these DBs require(__DIR__.'/skipif.inc'); preg_match('/.*Release ([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches); if (!(isset($matches[0]) && $matches[1] >= 12)) { die("skip expected output only valid when using Oracle Database 12c or greater"); } preg_match('/^[[:digit:]]+/', oci_client_version(), $matches); if (!(isset($matches[0]) && $matches[0] >= 12)) { die("skip works only with Oracle 12c or greater version of Oracle client libraries"); } ?> --FILE-- ===DONE=== --EXPECTF-- Test 1 array(2) { ["C1"]=> string(1) "1" ["C2"]=> string(1) "a" } array(2) { [0]=> string(1) "2" [1]=> string(1) "b" } object(stdClass)#%d (2) { ["C1"]=> string(1) "3" ["C2"]=> string(1) "c" } array(4) { [0]=> string(1) "4" ["C1"]=> string(1) "4" [1]=> string(1) "d" ["C2"]=> string(1) "d" } array(2) { [0]=> string(1) "5" [1]=> string(1) "e" } array(2) { ["C1"]=> string(1) "6" ["C2"]=> string(1) "f" } ===DONE===