要启用 sqlite ,需要在 php.in 中包含哪些内容

发布于 2024-10-30 09:24:49 字数 360 浏览 2 评论 0原文

可能的重复:
sqlite 无法工作。

我努力尝试使用 php 连接 sqlite 数据库。经过大量搜索,我发现在 php.ini 中包含以下几行。我不知道该包括在哪里。

扩展=php_pdo.dll 扩展名=php_sqlite.dll 我在 php.ini 中甚至找不到一个名为 sqlite 的词。任何人都可以提供启用 sqlite 的示例 php.ini

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 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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葬心 2024-11-06 09:24:49

如果您从 pdo 连接到 sqlite 尝试(也许)在 php.ini 中设置 odbc.allow_persistent = On
当我将 centos 5 安装到我的服务器并检查所有存储库时,我没有找到 php-sqlite 模块,并且开发人员在没有 sqlite 的情况下编译 php。我对 sqlite 使用 PDO php 函数:
$x = new PDO("sqlite:......");
我想你可以尝试 odbc.allow_persistent = On

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文