SQLite3::close

(PHP 5 >= 5.3.0, PHP 7)

SQLite3::closeCloses the database connection

설명

public bool SQLite3::close ( void )

Closes the database connection.

인수

이 함수는 인수가 없습니다.

반환값

Returns TRUE on success, FALSE on failure.

예제

Example #1 SQLite3::close() example

<?php
$db 
= new SQLite3('mysqlitedb.db');
$db->close();
?>

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top