mysql 和 java(观察更新、创建表、删除表和编辑信息)
我现在正在开发一个java应用程序,它将使用在Linux机器上运行的远程mySQL数据库。我希望能够观察数据(基本上将观察者附加到其中一个表,以便让我的应用程序知道某些内容何时发生变化)。我希望能够创建表、查看表和编辑表。
我想知道在 java 中我有什么选择来满足这种类型的需求。请让我知道您在尝试实现此类功能时遇到的任何问题。
感谢您的帮助!
I am working on an application for java right now that will be using a remote mySQL database running on a linux machine. I am wanting to be able to observe the data (basically have an observer attached to one of the tables to let my application know when something has changed). I am wanting to be able to create tables, view tables and edit tables.
I was wondering what my options were in java for this type of need. Please let me know of any issues you ran into while trying to achieve this type of functionality.
Thanks for the assistance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我能找到的最接近我想要的答案是 JDBC。
Closest answer i could find to what i wanted is JDBC.