Home > Backend Development > PHP Tutorial > Sqlite Win下PHP支持php_sqlite.dll

Sqlite Win下PHP支持php_sqlite.dll

WBOY
Release: 2016-06-23 14:29:06
Original
1173 people have browsed it

Sqlite Win下PHP支持php_sqlite.dll

SQLite 是个使用档案方式存储的 Database,不需要另外安装如 MySQL 之类的 Server,而且 PHP 5 已经? SQLite ?建了,相当好用,在某些方面效能比起其他 Database 系统有过之而无不及.目前国?很少人知道.
SQLite 在 windows 的安?方式:
PHP 4 版本
1.下? php_sqlite.dll(注意版本号),复制到 php/exetensions/ 下
2.php.ini 加上 extension=php_sqlite.dll
3.重新启动 Web Server 即可

PHP 5 版本
PHP 5 已经包含 SQLite 模组了,所以只需要载入模组即可
修改 php.ini 找到 ;extension=php_sqlite.dll 将前面的分号去掉
目前测试结果在 PHP 5.1.1 和 5.1.2 只有这样是运行不起?的,必?连 pdo 一起启动,所以在前
面增加?行:
extension=php_pdo.dll
extension=php_pdo_sqlite.dll
extension=php_sqlite.dll
重新启动 Web Server 即可

注明:PHP Version 5.1.6也有这样的问题.

一开始我只是打开了
extension=php_sqlite.dll
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template