支持 PHP 的 Java 数据库
我正在寻找一个java数据库服务器,它支持同时从PHP Web应用程序和java应用程序共享和打开数据库。
我找到了 Apache Derby 和 H2 Database,但它们对 PHP 应用程序没有明确的支持。
请建议。
它必须是一个 Java 数据库服务器,因为我们计划可能必须将应用程序分发给客户,所以我们需要一些可移植和可重新分发的东西。
I'm looking for a java database server that has support for database to be shared and opened from a PHP web application and a java application simultaneuosly.
I found Apache Derby and H2 Database but they don't have a clear support for PHP application.
Please suggest.
It must be a Java Database Server, since we are planning that we may have to distribute the applications to customers, so we need something portable and redistributable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
大多数流行的数据库都有 PHP 和 Java 的驱动程序。
它们还支持并发连接。选择 SQL Server、Oracle、MySql、Postgres 等就可以了。
Most popular databases have drivers for PHP and for Java.
They also support concurrent connections. Choosing something like SQL Server, Oracle, MySql, Postgres will work just fine.
MySQL 可能适合你。我自己在需要从 java 和 PHP 访问它的项目中使用过它。
MySQL might work fine for you. I've used it myself in projects where I both need to access it from java and PHP.