如何使用netbeans轻松将任何数据库视图绑定到jtable?
Netbeans 可以轻松地将 jtable 与关系数据库表(mysql、deby 等)绑定。 我如何轻松地将“Views”表绑定到jtable... 如果这是不可能的,是否有任何简单的方法来连接表并在 JTable 中显示结果...非常感谢。
Netbeans can easily bind jtable with relational database tables(mysql,deby,etc)..
How can i easily bind "Views" table to a jtable...
If that is not possible, is there any easy way to join tables and display the result in JTable... Thank you so much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 JTable 中显示任意结果集非常容易。首先需要使用 ResultSet 中的元数据计算出有哪些列,然后通过循环 ResultSet 添加行。
http://fahdshariff.blogspot.com/2010/ 02/display-any-resultset-in-jtable.html
It is quite easy to display an arbitrary ResultSet in a JTable. You first need to work out what columns there are by using the metadata within the ResultSet and then add rows by looping over the ResultSet.
http://fahdshariff.blogspot.com/2010/02/display-any-resultset-in-jtable.html