仅使用 php-java 桥连接到数据库
我想知道如何使用 php-java 桥,但只能连接到数据库..然后我想使用 PHP 查看数据库中的数据,更新数据库中的数据以及通过 PHP 文件删除数据库中的数据(界面)
I would like to know how can I use php-java bridge but only to connect to database ..and then i would like to use PHP to view data from DB, to update data from DB and to delete data from DB through PHP files(interface)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您使用什么数据库?
如果您使用 MySQL、SQLite 或 MongoDB,则不需要桥接器,因为 Java 可以直接连接到所有这些。例如,要连接到 MySQL,您可以使用 JDBC。
What Database are you using?
If you use MySQL, SQLite or MongoDB, there is no need for a bridge since Java can connect to all of them directly. To connect to MySQL (for example) you would use JDBC.
我已经使用 Zend Server Community Edition 完成了它 - 它有一个我当前正在使用的 java 桥接选项。
然而...对于如何更快、更轻松地到达目的地,我有不同的看法。在 php 中切换数据库或使用多个数据库的能力很容易 - 使用 pdo,并且您将能够保持它的通用性。如果您愿意,您甚至可以连接到 MSSQL - 一切都在那里。使用 PDO 准备好的语句(您的查询),您还将获得类似的安全性,而无需创建额外的数据库层。
请注意:但是,如果您已经将 Java 代码作为模型写入服务器,那就放手吧!
I've done it using Zend Server Community Edition - it has a java bridge option that I am currently using.
However...I have a different opinion on how to get to your destination thast will be faster and easier. To have the ability to switch out databases or use multiple databases is easy in php - use pdo, and you'll be able to keep it generic. You can even connect to MSSQL if you wanted to - it's all there. With PDO prepared statements (your queries) you'll also have similiar security without creating an additional database layer.
Please note: If you already have Java code already written to server as a model, however, rock out!