|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-10-17 12:23 UTC] cmb@php.net
-Status: Open
+Status: Suspended
[2017-10-17 12:23 UTC] cmb@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 16:00:01 2025 UTC |
Description: ------------ Please see the example code. When I connect a SQLite file, the dbx_close ALWAYS return false. Reproduce code: --------------- $link = dbx_connect(DBX_SQLITE, '', dirname(__FILE__) . '/test.sqlite', '', ''); if (dbx_close($link)) { echo 'TRUE'; } else { echo 'FALSE'; } Expected result: ---------------- TRUE Actual result: -------------- FALSE