1--TEST-- 2Oracle Database 12c Implicit Result Sets: oci_get_implicit_resultset: oci_free_statement #3 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(dirname(__FILE__).'/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(dirname(__FILE__).'/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 43while (($s1 = oci_get_implicit_resultset($s))) { 44 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS)) != false) { 45 foreach ($row as $item) { 46 echo " ".$item; 47 } 48 echo "\n"; 49 } 50 oci_free_statement($s1); 51} 52oci_free_statement($s); 53 54?> 55===DONE=== 56<?php exit(0); ?> 57--EXPECT-- 58Test 1 59 1 60 2 61 3 62 4 63 5 64 6 65===DONE=== 66