You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
237 B

<?php #vim:ft=php
$dbname = tempnam(dirname(__FILE__), "phpsql");
function cleanup() {
global $db, $dbname;
$db = NULL;
usleep(500000);
@unlink($dbname);
}
register_shutdown_function("cleanup");
$db = new SQLiteDatabase($dbname);
?>