php-src/ext/oci8/tests/fetch_all.phpt

109 lines
1.9 KiB
Plaintext
Raw Normal View History

2005-09-06 19:33:18 +00:00
--TEST--
oci_fetch_all()
2005-12-06 19:26:57 +00:00
--SKIPIF--
2005-09-06 19:33:18 +00:00
<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
--FILE--
<?php
2009-10-02 20:16:59 +00:00
require(dirname(__FILE__)."/connect.inc");
2005-09-06 19:33:18 +00:00
2009-10-02 20:16:59 +00:00
// Initialize
2005-09-06 19:33:18 +00:00
2009-10-02 20:16:59 +00:00
$stmtarray = array(
"drop table fetch_all_tab",
"create table fetch_all_tab (id number, value number)",
"insert into fetch_all_tab (id, value) values (1,1)",
"insert into fetch_all_tab (id, value) values (1,1)",
"insert into fetch_all_tab (id, value) values (1,1)"
);
2005-09-06 19:33:18 +00:00
2009-10-02 20:16:59 +00:00
foreach ($stmtarray as $stmt) {
$s = oci_parse($c, $stmt);
$r = @oci_execute($s);
if (!$r) {
$m = oci_error($s);
if (!in_array($m['code'], array( // ignore expected errors
942 // table or view does not exist
))) {
echo $stmt . PHP_EOL . $m['message'] . PHP_EOL;
}
2005-09-06 19:33:18 +00:00
}
}
2009-10-02 20:16:59 +00:00
if (!($s = oci_parse($c, "select * from fetch_all_tab"))) {
2005-09-06 19:33:18 +00:00
die("oci_parse(select) failed!\n");
}
/* oci_fetch_all */
if (!oci_execute($s)) {
die("oci_execute(select) failed!\n");
}
var_dump(oci_fetch_all($s, $all));
var_dump($all);
/* ocifetchstatement */
if (!oci_execute($s)) {
die("oci_execute(select) failed!\n");
}
var_dump(ocifetchstatement($s, $all));
var_dump($all);
2009-10-02 20:16:59 +00:00
// Cleanup
$stmtarray = array(
"drop table fetch_all_tab"
);
foreach ($stmtarray as $stmt) {
$s = oci_parse($c, $stmt);
oci_execute($s);
}
2005-09-06 19:33:18 +00:00
echo "Done\n";
?>
2009-10-02 20:16:59 +00:00
--EXPECTF--
2005-09-06 19:33:18 +00:00
int(3)
2009-10-02 20:16:59 +00:00
array(2) {
[%u|b%"ID"]=>
2006-07-10 20:48:04 +00:00
array(3) {
[0]=>
2009-10-02 20:16:59 +00:00
%unicode|string%(1) "1"
2006-07-10 20:48:04 +00:00
[1]=>
2009-10-02 20:16:59 +00:00
%unicode|string%(1) "1"
2006-07-10 20:48:04 +00:00
[2]=>
2009-10-02 20:16:59 +00:00
%unicode|string%(1) "1"
2006-07-10 20:48:04 +00:00
}
2009-10-02 20:16:59 +00:00
[%u|b%"VALUE"]=>
2006-07-10 20:48:04 +00:00
array(3) {
[0]=>
2009-10-02 20:16:59 +00:00
%unicode|string%(1) "1"
2006-07-10 20:48:04 +00:00
[1]=>
2009-10-02 20:16:59 +00:00
%unicode|string%(1) "1"
2006-07-10 20:48:04 +00:00
[2]=>
2009-10-02 20:16:59 +00:00
%unicode|string%(1) "1"
2006-07-10 20:48:04 +00:00
}
}
int(3)
2009-10-02 20:16:59 +00:00
array(2) {
[%u|b%"ID"]=>
2006-07-10 20:48:04 +00:00
array(3) {
[0]=>
2009-10-02 20:16:59 +00:00
%unicode|string%(1) "1"
2006-07-10 20:48:04 +00:00
[1]=>
2009-10-02 20:16:59 +00:00
%unicode|string%(1) "1"
2006-07-10 20:48:04 +00:00
[2]=>
2009-10-02 20:16:59 +00:00
%unicode|string%(1) "1"
2006-07-10 20:48:04 +00:00
}
2009-10-02 20:16:59 +00:00
[%u|b%"VALUE"]=>
2006-07-10 20:48:04 +00:00
array(3) {
[0]=>
2009-10-02 20:16:59 +00:00
%unicode|string%(1) "1"
2006-07-10 20:48:04 +00:00
[1]=>
2009-10-02 20:16:59 +00:00
%unicode|string%(1) "1"
2006-07-10 20:48:04 +00:00
[2]=>
2009-10-02 20:16:59 +00:00
%unicode|string%(1) "1"
2006-07-10 20:48:04 +00:00
}
}
Done