jtable « Database « JPA Q&A





1. how can i display the database data to an jtable(dynamic) in the swings!    stackoverflow.com

we are using hibernate in business layer,but the task is, by using the jtable in swings to display the dynamic data(swings) from the database. code: Criteria criteria=session.createCriteria(User.class); //here user.class is pojo class in hibernate. List ...

2. Using hibernate as backing for large dataset in JTable    stackoverflow.com

Have an application that has a Jtable with the data held in RAM, the table can upto be 1,000,000 rows by 100 columns so this just uses too much memory. So ...