I am using MyEclipse Professional 7.5
I have used hibernate to reverse engineer an existing database (dao’s etc).
I have used Matisse to create a form with a jtable in a scroll window
What is the simplest way to use MyEclipse to wire a db table to the jTable.
I know that I must specify a model for the jTable, but in the MyEclipse example the model is set up to contain ‘hard coded’ data, not a db table.
I guess that one must bind the database table to a DefaultDataModel and then base the jTable on this. Must I use the DAO findAll() method? But this returns a List, not a DataModel!
How does one do this. Will MyEclipse automate part of it?
I am currently sitting with the database tables reverse engineered into Classes and DAOs etc, but am stuck.
Some help would be appreciated.
Mike King