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

75 lines
1.5 KiB
Plaintext
Raw Normal View History

2005-09-06 19:33:18 +00:00
--TEST--
oci8.default_prefetch ini option
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"); ?>
--INI--
oci8.default_prefetch=100
--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 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)",
);
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
$select_sql = "select * from default_prefetch2_tab";
2005-09-06 19:33:18 +00:00
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));
2009-10-02 20:16:59 +00:00
// Cleanup
$stmtarray = array(
"drop table default_prefetch2_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