This is basically a Windows XP installation.
The extension dir: C:\www\php\ext
The actual sqlite extension file name: php_sqlite.dll
I have verified the php.ini file in D:/Windows(%SYSTEMROOT%) is correct .
I have taken off the ; before the module name so it now looks like
Code: Select all
;extension=php_msql.dll
extension=php_mysql.dll
extension=php_mysqli.dll
;extension=php_snmp.dll
;extension=php_sockets.dll
extension=php_sqlite.dll
extension=php_sybase_ct.dllCode: Select all
; Directory in which the loadable extensions (modules) reside.
extension_dir = "C:/www/php/ext/"if I run phpinfo(), i can see modules like mysql and mysqli but sqlite and this is the same case even when i try to enable sybase module as well.
EDIT:
I know the sqlite is not working because it reports the following:
Code: Select all
Fatal error: Call to undefined function sqlite_open() in C:\www\Apache2\htdocs\rag\phpinfo.php on line 5Code: Select all
$dbhandle = sqlite_open('sqlitedb');
sqlite_close($dbhandle);Thanks to all