sqlite_close

(PHP 5)

sqlite_close -- Closes an open SQLite database

说明

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.

参数

dbhandle

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

范例

例子 1. sqlite_close() example

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


add a note add a note User Contributed Notes
Eeyore
28-Feb-2006 02:08
It doesn't appear that sqlite_close actually closes the db file (or if it does, it doesn't free the lock).  If you open a new db, close it and then try to unlink it (on Windows at least) you get a "Permission Denied" error.