mirror of
https://github.com/php/php-src.git
synced 2024-11-27 20:03:40 +08:00
cdb interface is currently readonly
This commit is contained in:
parent
6668f61ecb
commit
a54cf8b94a
41
ext/dba/tests/dba_cdb_read.phpt
Normal file
41
ext/dba/tests/dba_cdb_read.phpt
Normal file
@ -0,0 +1,41 @@
|
||||
--TEST--
|
||||
DBA CDB handler test (read only)
|
||||
--SKIPIF--
|
||||
<?php
|
||||
require_once('skipif.inc');
|
||||
if (!in_array('cdb', dba_handlers())) die('skip CDB handler not available');
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
echo "database handler: cdb\n";
|
||||
$handler = 'cdb';
|
||||
$db_file = dirname(__FILE__).'/test.cdb';
|
||||
if (($db_file=dba_open($db_file, "r", $handler))!==FALSE) {
|
||||
$a = dba_firstkey($db_file);
|
||||
$i=0;
|
||||
echo "?$a";
|
||||
while($a) {
|
||||
$a = dba_nextkey($db_file);
|
||||
echo $a;
|
||||
$i++;
|
||||
}
|
||||
echo "\n";
|
||||
echo $i;
|
||||
for ($i=1; $i<5; $i++) {
|
||||
echo dba_exists($i, $db_file) ? "Y" : "N";
|
||||
}
|
||||
echo "\n=";
|
||||
echo dba_fetch(1, $db_file);
|
||||
echo dba_fetch(2, $db_file);
|
||||
echo dba_fetch(3, $db_file);
|
||||
echo dba_fetch(4, $db_file);
|
||||
dba_close($db_file);
|
||||
} else {
|
||||
echo "Error creating database\n";
|
||||
}
|
||||
?>
|
||||
--EXPECT--
|
||||
database handler: cdb
|
||||
?1212314
|
||||
7YYYY
|
||||
=1234
|
BIN
ext/dba/tests/test.cdb
Normal file
BIN
ext/dba/tests/test.cdb
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user