sqlite_close
(PHP 5, PECL sqlite >= 1.0.0)
sqlite_close — Closes an open SQLite database
설명
void sqlite_close
( resource $dbhandle
)
Closes the given db_handle database handle. If the database was persistent, it will be closed and removed from the persistent list.
반환값
값을 반환하지 않습니다.
예제
Example #1 sqlite_close() example
<?php
$dbhandle = sqlite_open('sqlitedb');
sqlite_close($dbhandle);
?>
참고
- sqlite_open() - Opens an SQLite database and create the database if it does not exist
- sqlite_popen() - Opens a persistent handle to an SQLite database and create the database if it does not exist
There are no user contributed notes for this page.
