如何在 Windows 上使用 PHP 连接 Pervasive ODBC?
我想在 Windows 上使用 PHP 连接 Pervasive ODBC。我们是否必须下载 Pervasive 客户端版本?为此我们还需要下载什么?
I want to Connect Pervasive ODBC using PHP on Windows. Wether we have to download Pervasive client version for same? Whats else we need to download for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要通过 PHP 访问 Pervasive 数据,您将需要客户端或引擎,具体取决于数据相对于 PHP 运行位置的位置。如果 PHP 运行在 Pervasive 数据所在的机器上,则需要 Pervasive 引擎。如果数据位于不同的计算机上,您可能需要 Pervasive 客户端。
在 PHP 中,您可以使用 ODBC 访问 Pervasive 引擎。以下是 Pervasive 网站的链接:
http://ww1.pervasive.com/developerzone/development_env/php.asp编辑:看起来链接自 2010 年以来已更改。当前链接是 http:// /www.pervasive.com/database/Home/Support/PSQLSDKArchives.aspx 但我无法下载 PHP 示例。有可能它已被删除。该示例是一个连接到 ODBC 的简单 PHP 页面。以下示例与 Pervasive 站点上的示例相同: 在 Linux 上从 PHP 进行普遍的 ODBC 访问?
To access Pervasive data through PHP, you will need either the client or the engine depending on where the data is in relation to where PHP is running. If PHP is running on a machine where the Pervasive data is located, you need the Pervasive engine. If the data is on a different machine, you'll probably need the Pervasive client.
From PHP, you can use ODBC to access the Pervasive engine. Here's a link to Pervasive's site:
http://ww1.pervasive.com/developerzone/development_env/php.aspedit: Looks like the link has changed since 2010. The current link is http://www.pervasive.com/database/Home/Support/PSQLSDKArchives.aspx but I wasn't able to download the PHP sample. It's possible it's been removed. The sample was a simple PHP page connecting to ODBC. Here's a sample that is the same as what was on the Pervasive site: Pervasive ODBC access from PHP on Linux?