| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2019-12-13 04:13 UTC] requinix@php.net
 
-Status: Open
+Status: Feedback
  [2019-12-13 04:13 UTC] requinix@php.net
  [2019-12-13 16:15 UTC] silverwoodchuck47 at yahoo dot com
  [2019-12-16 00:41 UTC] silverwoodchuck47 at yahoo dot com
  [2019-12-16 00:41 UTC] silverwoodchuck47 at yahoo dot com
 
-Status: Feedback
+Status: Closed
  [2019-12-16 00:41 UTC] silverwoodchuck47 at yahoo dot com
  [2019-12-16 09:06 UTC] cmb@php.net
 
-Status:      Closed
+Status:      Re-Opened
-Type:        Bug
+Type:        Documentation Problem
-Assigned To:
+Assigned To: cmb
  [2019-12-16 09:35 UTC] cmb@php.net
  [2019-12-16 09:36 UTC] cmb@php.net
 
-Status: Re-Opened
+Status: Closed
  [2019-12-16 09:36 UTC] cmb@php.net
  [2019-12-16 09:40 UTC] salathe@php.net
  [2019-12-16 14:40 UTC] mumumu@php.net
  [2020-01-21 00:54 UTC] daniel at hoolihan dot org
  [2020-02-07 06:04 UTC] phpdocbot@php.net
  [2020-12-30 11:59 UTC] nikic@php.net
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 00:00:01 2025 UTC | 
Description: ------------ My scripts that depend on sqlite don't work work anymore because pdo_sqlite extension does not load. It works for 7.3.12, but not 7.4.0. Test script: --------------- $dbhnd = new PDO("sqlite:". $database); Expected result: ---------------- I expect that if I replace php 7.3.12 with 7.4.0 AND there's no mention of removing sqlite extension from PHP core, that php scripts that depend on the sqlite extension to work. All other extensions ("gd", "mbstring", "exif", "xsl") load just fine. pdo_sqlite does not. Actual result: -------------- For example, one error message is PDOException: could not find driver in D:\xxx\x.php:110 Stack trace: #0 D:\xxx\x.php(110): PDO->__construct('sqlite:lkp/lkpM...') #1 D:\yyy\y.php(65): include('D:\\Data\\xxx\\i...') #2 {main} Another PDOException: could not find driver in D:\xxx\x.php:42 Stack trace: #0 D:\Data\xxx\x.php(42): PDO->__construct('sqlite:lkp/lkpM...') #1 {main}