mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
No longer needed
This commit is contained in:
parent
a93d20b443
commit
320a87e4f9
@ -1,104 +0,0 @@
|
||||
--TEST--
|
||||
sqlite-spl: sqlite / spl integration
|
||||
--INI--
|
||||
sqlite.assoc_case=0
|
||||
--SKIPIF--
|
||||
<?php # vim:ft=php
|
||||
if (!extension_loaded("sqlite")) print "skip";
|
||||
if (!class_exists("spl_forward")) print "skip: class spl_forward is not installed";
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
include "blankdb_oo.inc";
|
||||
|
||||
$data = array(
|
||||
"one",
|
||||
"two",
|
||||
"three"
|
||||
);
|
||||
|
||||
$db->query("CREATE TABLE strings(a VARCHAR)");
|
||||
|
||||
foreach ($data as $str) {
|
||||
$db->query("INSERT INTO strings VALUES('$str')");
|
||||
}
|
||||
|
||||
echo "====UNBUFFERED====\n";
|
||||
$r = $db->unbuffered_query("SELECT a from strings", SQLITE_NUM);
|
||||
//var_dump(class_implements($r));
|
||||
foreach($r as $row) {
|
||||
var_dump($row);
|
||||
}
|
||||
echo "====NO-MORE====\n";
|
||||
foreach($r as $row) {
|
||||
var_dump($row);
|
||||
}
|
||||
echo "====DIRECT====\n";
|
||||
foreach($db->unbuffered_query("SELECT a from strings", SQLITE_NUM) as $row) {
|
||||
var_dump($row);
|
||||
}
|
||||
echo "====BUFFERED====\n";
|
||||
$r = $db->query("SELECT a from strings", SQLITE_NUM);
|
||||
//var_dump(class_implements($r));
|
||||
foreach($r as $row) {
|
||||
var_dump($row);
|
||||
}
|
||||
foreach($r as $row) {
|
||||
var_dump($row);
|
||||
}
|
||||
echo "DONE!\n";
|
||||
?>
|
||||
--EXPECT--
|
||||
====UNBUFFERED====
|
||||
array(1) {
|
||||
[0]=>
|
||||
string(3) "one"
|
||||
}
|
||||
array(1) {
|
||||
[0]=>
|
||||
string(3) "two"
|
||||
}
|
||||
array(1) {
|
||||
[0]=>
|
||||
string(5) "three"
|
||||
}
|
||||
====NO-MORE====
|
||||
====DIRECT====
|
||||
array(1) {
|
||||
[0]=>
|
||||
string(3) "one"
|
||||
}
|
||||
array(1) {
|
||||
[0]=>
|
||||
string(3) "two"
|
||||
}
|
||||
array(1) {
|
||||
[0]=>
|
||||
string(5) "three"
|
||||
}
|
||||
====BUFFERED====
|
||||
array(1) {
|
||||
[0]=>
|
||||
string(3) "one"
|
||||
}
|
||||
array(1) {
|
||||
[0]=>
|
||||
string(3) "two"
|
||||
}
|
||||
array(1) {
|
||||
[0]=>
|
||||
string(5) "three"
|
||||
}
|
||||
array(1) {
|
||||
[0]=>
|
||||
string(3) "one"
|
||||
}
|
||||
array(1) {
|
||||
[0]=>
|
||||
string(3) "two"
|
||||
}
|
||||
array(1) {
|
||||
[0]=>
|
||||
string(5) "three"
|
||||
}
|
||||
DONE!
|
Loading…
Reference in New Issue
Block a user