xref: /PHP-8.0/ext/dba/tests/dba002.phpt (revision c5401854)
1--TEST--
2DBA Insert/Fetch Test
3--SKIPIF--
4<?php
5    require_once(__DIR__ .'/skipif.inc');
6    die("info $HND handler used");
7?>
8--FILE--
9<?php
10    require_once(__DIR__ .'/test.inc');
11    echo "database handler: $handler\n";
12    if (($db_file=dba_open($db_file, "n", $handler))!==FALSE) {
13        dba_insert("key1", "This is a test insert", $db_file);
14        echo dba_fetch("key1", $db_file);
15        dba_close($db_file);
16    } else {
17        echo "Error creating database\n";
18    }
19?>
20--CLEAN--
21<?php
22    require(__DIR__ .'/clean.inc');
23?>
24--EXPECTF--
25database handler: %s
26This is a test insert
27