mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
For rationale, see #6787 Extensions migrated in part 4: * simplexml * skeleton * soap * spl * sqlite3 * sysvmsg * sysvsem * tidy - also removed a check for an ancient dependency version
23 lines
288 B
PHP
23 lines
288 B
PHP
--TEST--
|
|
Bug #45798 (sqlite3 doesn't track unexecuted statements)
|
|
--EXTENSIONS--
|
|
sqlite3
|
|
--FILE--
|
|
<?php
|
|
|
|
require_once(__DIR__ . '/new_db.inc');
|
|
|
|
$stmt = $db->prepare("SELECT 1");
|
|
|
|
var_dump($stmt->close());
|
|
|
|
var_dump($db->close());
|
|
|
|
print "done";
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|
|
bool(true)
|
|
done
|