SQLite3::close
PHP function
Edit on GitHub ✎
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
Closes the database connection
Description
SQLite3::close(): bool
Closes the database connection.
Parameters Parameters
Return Values
Success
Examples
SQLite3::close() example
php
<?php
$db = new SQLite3('mysqlitedb.db');
$db->close();
?>