Now I get confused...

JTable is a part of a swing API so it's handling with how we view the table stated with JTable table = new JTable();

However to do things with database it needs another class, either it's extended from AbstractTableModel or DefaultTableModel. How to state this ?

Second :

JTable(Object[][] rowData, Object[] columnNames)

JTable(Vector rowData, Vector columnNames)

This is what I get from sun website, how or maybe where to put that in the code ?

As far as I read how data handled is dealt on by the class that extends from either the class. Does it mean how it's printed in view on JTable also in the Model ?

Well, if there's any reading on this part, please point on where I can read this.

Thanks in advance

link|improve this question
feedback

1 Answer

I don't know if I completely understand your question. Are you asking how to create TableModel from a JDBC ResultSet? If so, there is nice technique for doing that here:

http://technojeeves.com/joomla/index.php/free/59-resultset-to-tablemodel

This reads all of the data into memory. If your query is very large, and if your JDBC driver supports arbitrary scrolling cursors, then you could create an implementation of the TableModel interface that is backed by the ResultSet itself, which should prevent your application from running out of memory with large results. That is a little more complex, but it is demonstrated here:

http://www.java2s.com/Code/Java/Swing-JFC/ResultSetTable.htm

link|improve this answer
Once you have created a TableModel, you can do "JTable tablename = new JTable( myTableModel );" – Jesse Barnum Jul 2 '11 at 5:24
I'm confused with the concept perhaps, and yes I want to make TableModel from a JDBC ResultSet. But at the same time I'm confused with how the main program declare and call the tablemodel class, do I still need to declare JTable tablename = new JTable(); if I want all to be done in the tablemodel class ? if so how...anyway thanks for the urls, I'll read it – Levian Jul 2 '11 at 5:25
Whoops, I accidentally edited your comment instead of adding a new one - sorry about that. I don't know how to revert it. – Jesse Barnum Jul 2 '11 at 5:26
OK so that's all supposedly to be in the main class and all others can just be placed on the tablemodel class am I right ? – Levian Jul 2 '11 at 5:26
LOL, it's OK :) – Levian Jul 2 '11 at 5:27
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.