Possible Duplicate:
sqlite is not working.
i am tried hard to connect sqlite database using php. after lot of search, i found to include the below lines in php.ini. i am not sure开发者_JAVA技巧 where to include.
extension=php_pdo.dll extension=php_sqlite.dll i could't find even a word called sqlite in php.ini. can any give the sample php.ini with sqlite enable
If your connect to sqlite from pdo try (maybe) set in php.ini odbc.allow_persistent = On When i install centos 5 to my server and check all repositories i don't find php-sqlite module and developers compile php without sqlite. I use PDO php function for sqlite: $x = new PDO("sqlite:......"); And i thing your can try odbc.allow_persistent = On
精彩评论