(No version information available, might be only in CVS)
SQLite3::close — Closes the database connection
Closes the database connection.
This function has no parameters.
Returns TRUE on success, FALSE on failure.
Example #1 SQLite3::close() example
<?php$db = new SQLite3('mysqlitedb.db');$db->close();?>