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

54 lines
1.0 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=20
--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_prefetch_tab",
"create table default_prefetch_tab (id number, value number)",
"insert into default_prefetch_tab (id, value) values (1,1)",
"insert into default_prefetch_tab (id, value) values (1,1)",
"insert into default_prefetch_tab (id, value) values (1,1)",
);
2005-09-06 19:33:18 +00:00
oci8_test_sql_execute($c, $stmtarray);
2005-09-06 19:33:18 +00:00
2009-10-02 20:16:59 +00:00
// Run Test
$select_sql = "select * from default_prefetch_tab";
2005-09-06 19:33:18 +00:00
if (!($s = oci_parse($c, $select_sql))) {
die("oci_parse(select) failed!\n");
}
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_prefetch_tab"
);
oci8_test_sql_execute($c, $stmtarray);
2005-09-06 19:33:18 +00:00
echo "Done\n";
?>
--EXPECT--
bool(true)
int(1)
Done