安装 pdo sqlite 驱动程序
如何安装 pdo sqlite 驱动程序以启用 onserver 支持
how to install pdo sqlite drivers to enable onserver support
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何安装 pdo sqlite 驱动程序以启用 onserver 支持
how to install pdo sqlite drivers to enable onserver support
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
假设我理解这个问题,您想知道如何启用
PDO SQLite
访问。根据 PHP 配置的版本,您可能需要选择不同的选项,但假设 PHP 5.3.x,您应该编辑php.ini
以包含以下库(对于 Windows - 类似的库*nix 上的不同扩展名)在extension=lib.dll
(或extension=lib.so
)中:这假设它们可用在您的服务器上,您可以编辑 PHP.ini 配置。如果您不能,那么您可能必须要求您的主机提供商为您执行此操作(他们可能......)。
Assuming I understand the question, you want to know how to enable
PDO SQLite
access. Depending on the version of your PHP configuration, you may need to select different options, but assuming PHP 5.3.x, you should edit thephp.ini
to include the following libraries (for Windows - similar libs with different extension on *nix) in theextension=lib.dll
(orextension=lib.so
):This assumes they are available on your server and you can edit the PHP.ini config. If you cannot then you may have to ask your host provider to do this for you (which they may...).
SQLite 函数 (PDO_SQLITE)
简介
PDO_SQLITE 是一个实现 PHP 数据对象 (PDO) 接口以允许访问 SQLite 3 数据库的驱动程序。
http://www.php.net/manual/en/ref.pdo -sqlite.php
SQLite Functions (PDO_SQLITE)
Introduction
PDO_SQLITE is a driver that implements the PHP Data Objects (PDO) interface to enable access to SQLite 3 databases.
http://www.php.net/manual/en/ref.pdo-sqlite.php