1--TEST-- 2Oracle Database 12c Implicit Result Sets: oci_get_implicit_resultset: oci_free_statement #2 3--SKIPIF-- 4<?php 5if (!extension_loaded('oci8')) die ("skip no oci8 extension"); 6$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs 7require(__DIR__.'/skipif.inc'); 8preg_match('/.*Release ([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches); 9if (!(isset($matches[0]) && $matches[1] >= 12)) { 10 die("skip expected output only valid when using Oracle Database 12c or greater"); 11} 12preg_match('/^[[:digit:]]+/', oci_client_version(), $matches); 13if (!(isset($matches[0]) && $matches[0] >= 12)) { 14 die("skip works only with Oracle 12c or greater version of Oracle client libraries"); 15} 16?> 17--FILE-- 18<?php 19 20require(__DIR__.'/connect.inc'); 21 22// Initialization 23 24$plsql = 25 "declare 26 c1 sys_refcursor; 27 begin 28 open c1 for select 1 from dual union all select 2 from dual; 29 dbms_sql.return_result(c1); 30 open c1 for select 3 from dual union all select 4 from dual; 31 dbms_sql.return_result(c1); 32 open c1 for select 5 from dual union all select 6 from dual; 33 dbms_sql.return_result(c1); 34 end;"; 35 36// Run Test 37 38echo "Test 1\n"; 39 40$s = oci_parse($c, $plsql); 41oci_execute($s); 42 43try { 44 while (($s1 = oci_get_implicit_resultset($s))) { 45 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS)) != false) { 46 foreach ($row as $item) { 47 echo " ".$item; 48 } 49 echo "\n"; 50 oci_free_statement($s); // close parent 51 } 52 } 53} catch(\TypeError $exception) { 54 var_dump($exception->getMessage()); 55} 56 57?> 58--EXPECTF-- 59Test 1 60 1 61 62Warning: oci_fetch_array(): OCI_INVALID_HANDLE in %s on line %d 63string(%d) "oci_get_implicit_resultset(): supplied resource is not a valid oci8 statement resource"