Php sqlite3 için PDO sürücüsünü etkinleştirmek nasıl?

3 Cevap php

Benim SQLite sürüm 3.4.0 olduğunu

alt text

Ancak SQLitev3 benim PHPInfo PDO desteği listede / etkin değil

alt text

Bunu nasıl etkinleştirebilirsiniz? Ben XAMPP ile benim web sunucusu yüklü.

3 Cevap

Ben zaten yüklü böylece sqlite3 için PDO sürücüsü, 'sqlite' denir düşünüyorum. Sqlite2 sürücüsü eskidir.

PDO_SQLITE is a driver that implements the PHP Data Objects (PDO) interface to enable access to SQLite 3 databases.

In PHP 5.1, the SQLite extension also provides a driver for SQLite 2 databases; while it is not technically a part of the PDO_SQLITE driver, it behaves similarly, so it is documented alongside it. The SQLite 2 driver for PDO is provided primarily to make it easier to import legacy SQLite 2 database files into an application that uses the faster, more efficient SQLite 3 driver. As a result, the SQLite 2 driver is not as feature-rich as the SQLite 3 driver.

Dan http://php.net/manual/en/ref.pdo-sqlite.php

Lütfen php.ini dosyaya gidin ve "sqlite" bulmak. Bunlar muhtemelen yorumladı:

extension=php_pdo_sqlite.dll

extension=php_sqlite.dll

Onları yorumsuz ve Apache yeniden başlatın.