开发者

to enabled sqlite , what to include in php.in [duplicate]

开发者 https://www.devze.com 2023-02-22 04:45 出处:网络
This question already has an answer here: Closed 11 years ago. Possible Duplicate: sqlite is not working.
This question already has an answer here: Closed 11 years ago.

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

0

精彩评论

暂无评论...
验证码 换一张
取 消