Hi,
the following script doesn't work correctly:
<?php
$handle = sqlite_popen("sqlite.db");
var_dump($handle);
$handle = sqlite_popen("sqlite.db");
var_dump($handle);
?>
will produce
$ ./php -f sqlitetest.php
resource(1) of type (sqlite database (persistent))
resource(1) of type (Unknown)
This also happens if I call sqlite_close($handle) between the popens...
BTW, this is on the latest ext/sqlite copied to existing 4.3.1 source tree
on a Windows box.
Everything else I tested with sqlite works ok.
Cheerio, Marc.
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php