summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/cursors.phpt
blob: a0921855fffbfd3c43ff1b47056b5811529ec5e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
--TEST--
fetching cursor from a statement
--SKIPIF--
<?php
$target_dbs = array('oracledb' => true, 'timesten' => false);  // test runs on these DBs
require(dirname(__FILE__).'/skipif.inc');
?>
--FILE--
<?php

require dirname(__FILE__)."/connect.inc";
require dirname(__FILE__)."/create_table.inc";

$insert_sql = "INSERT INTO ".$schema.$table_name." (id, value) VALUES (1,1)";

if (!($s = oci_parse($c, $insert_sql))) {
	die("oci_parse(insert) failed!\n");
}

for ($i = 0; $i<3; $i++) {
	if (!oci_execute($s)) {
		die("oci_execute(insert) failed!\n");
	}
}

if (!oci_commit($c)) {
	die("oci_commit() failed!\n");
}

$sql = "select CURSOR(select * from ".$schema.$table_name.") as curs FROM dual";
$stmt = oci_parse($c, $sql);

oci_execute($stmt);

while ($data = oci_fetch_assoc($stmt)) {
	oci_execute($data["CURS"]);
	$subdata = oci_fetch_assoc($data["CURS"]);
	var_dump($subdata);
	var_dump(oci_cancel($data["CURS"]));
	$subdata = oci_fetch_assoc($data["CURS"]);
	var_dump($subdata);
	var_dump(oci_cancel($data["CURS"]));
}

require dirname(__FILE__)."/drop_table.inc";

echo "Done\n";

?>
--EXPECTF--
array(5) {
  ["ID"]=>
  string(1) "1"
  ["VALUE"]=>
  string(1) "1"
  ["BLOB"]=>
  NULL
  ["CLOB"]=>
  NULL
  ["STRING"]=>
  NULL
}
bool(true)

Warning: oci_fetch_assoc(): ORA-01002: fetch out of sequence in %s on line %d
bool(false)
bool(true)
Done