Warning: file_put_contents(): Only -1 of 53 bytes written, possibly out of free disk space in /var/www/html/index.php on line 3

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 23

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 24

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 25
sqlite_changes sqlite_column SQLite PHP Manual sqlite_close (PHP 5, PECL sqlite:1.0-1.0.3) — Closes an open database Description void ( resource $dbhandle ) the given handle. If was persistent, i...
Forum und email

sqlite_close

(PHP 5, PECL sqlite:1.0-1.0.3)

sqlite_close — Closes an open SQLite database

Description

void sqlite_close ( resource $dbhandle )

Closes the given database handle. If the database was persistent, it will be closed and removed from the persistent list.

Parameters

dbhandle

The SQLite Database resource; returned from sqlite_open() when used procedurally.

Return values

No value is returned.

Examples

Example#1 sqlite_close() example

<?php
$dbhandle 
sqlite_open('sqlitedb');
sqlite_close($dbhandle);
?>