Installing SQLite3 on Windows

Print
SQLiteManager can manage SQLite database version 3 using the PDO extension will be included in PHP since version 5.1. You can gild and already introduce you to PDO from the moment you have installed PHP5.

SQLiteManager can manage SQLite database version 3 using the PDO extension will be included in PHP since version 5.1. You can gild and already introduce you to PDO from the moment you have installed PHP5.

First download the package PECL extensions for Windows: pecl-5.0.5-win32.zip

Dézipperle pack, then copy the extensions:

php_pdo.dll:
Extension
php_pdo_sqlite.dll:
Driver for SQLite3

in the directory containing the PHP extensions, the most often: C: php extensions
check this site searching for 'extension_dir' in your phpinfo ().

You can take the opportunity to add other PDO driver, drivers are currently available:

you must specify in your php.ini to load extension to START.

To locate your php.ini, look at the line 'Configuration File (php.ini) Path' in your phpinfo ().

open your php.ini, find the loading of extensions by searching the lines in which there 'extension =', then add the lines:

 

extension = php_pdo.dll
extension = php_pdo_sqlite.dll
and so on for each of the drivers that you want to install.

 

restart your web server.

View your phpinfo () you should see the PDO extension and the different drivers installed.