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

76 lines
1.4 KiB
Plaintext
Raw Normal View History

2005-09-06 19:33:18 +00:00
--TEST--
ocisetprefetch()
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
$stmtarray = array(
"drop table prefetch_old_tab",
"create table prefetch_old_tab (id number, value number)",
"insert into prefetch_old_tab (id, value) values (1,1)",
"insert into prefetch_old_tab (id, value) values (1,1)",
"insert into prefetch_old_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
foreach ($stmtarray as $stmt) {
$s = oci_parse($c, $stmt);
oci_execute($s);
2005-09-06 19:33:18 +00:00
}
2009-10-02 20:16:59 +00:00
// Run Test
2005-09-06 19:33:18 +00:00
if (!ocicommit($c)) {
die("ocicommit() failed!\n");
}
2009-10-02 20:16:59 +00:00
$select_sql = "select * from prefetch_old_tab";
2005-09-06 19:33:18 +00:00
if (!($s = ociparse($c, $select_sql))) {
die("ociparse(select) failed!\n");
}
var_dump(ocisetprefetch($s, 10));
if (!ociexecute($s)) {
die("ociexecute(select) failed!\n");
}
var_dump(ocifetch($s));
var_dump(ocirowcount($s));
2009-10-02 20:16:59 +00:00
// Cleanup
$stmtarray = array(
"drop table prefetch_old_tab"
);
foreach ($stmtarray as $stmt) {
$s = oci_parse($c, $stmt);
oci_execute($s);
}
2005-09-06 19:33:18 +00:00
echo "Done\n";
?>
--EXPECT--
bool(true)
bool(true)
int(1)
Done