Like other database extensions SQLite allows creation of persistent connections that eliminate the connection initialization overhead.

<?php
$db 
sqlite_popen("/path/to/database"0666$error)
    or die(
"Failed to connect because: ".$error);
?>
Caution