如何用 Apache Derby 替代 MySQL Server 作为 PHP 应用数据库?
代码语法是什么?为了连接到 Derby DB 并从 PHP 应用程序调用 Derby 存储过程(实际上是 Java 代码),我需要安装和配置什么?
即在 PHP 代码中,我想将熟悉的 mysql_connect()
和 mysql_query()
调用替换为连接到 Derby 数据库的内容,并执行查询和存储那里有手续。
What's the code syntax, and what all do I need to install and configure, for connecting to a Derby DB and invoking Derby Stored Procedures (which are really Java code) from a PHP Application?
i.e. In the PHP code, I want to replace the familiar mysql_connect()
and mysql_query()
calls with something that will connect to a Derby database instead, and execute queries and stored procedures there.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我理解正确的话,您想从 PHP 连接到 JavaDB (也称为 Derby 或 Apache Derby)?
如果是这样,您将需要 IBM DB2 PHP 服务器支持。
If I understand correctly, you want to connect to JavaDB (also called Derby or Apache Derby) from PHP?
If so, you'll need IBM DB2 support on your PHP server.
您还可以使用 PDO 与 ODBC。
You can also use PDO with ODBC.