php-src/ext/oci8/tests/default_prefetch2.phpt
Christopher Jones de0592a3a3 refactor tests
2009-10-02 20:16:59 +00:00

75 lines
1.5 KiB
PHP

--TEST--
oci8.default_prefetch ini option
--SKIPIF--
<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
--INI--
oci8.default_prefetch=100
--FILE--
<?php
require(dirname(__FILE__)."/connect.inc");
// Initialize
$stmtarray = array(
"drop table default_prefetch2_tab",
"create table default_prefetch2_tab (id number, value number)",
"insert into default_prefetch2_tab (id, value) values (1,1)",
"insert into default_prefetch2_tab (id, value) values (1,1)",
"insert into default_prefetch2_tab (id, value) values (1,1)",
);
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;
}
}
}
foreach ($stmtarray as $stmt) {
$s = oci_parse($c, $stmt);
oci_execute($s);
}
// Run Test
$select_sql = "select * from default_prefetch2_tab";
if (!($s = oci_parse($c, $select_sql))) {
die("oci_parse(select) failed!\n");
}
var_dump(oci_set_prefetch($s, 10));
if (!oci_execute($s)) {
die("oci_execute(select) failed!\n");
}
var_dump(oci_fetch($s));
var_dump(oci_num_rows($s));
// Cleanup
$stmtarray = array(
"drop table default_prefetch2_tab"
);
foreach ($stmtarray as $stmt) {
$s = oci_parse($c, $stmt);
oci_execute($s);
}
echo "Done\n";
?>
--EXPECT--
bool(true)
bool(true)
int(1)
Done