my dog learned polymorphism
The moose likes Swing / AWT / SWT and the fly likes HELP on JTABLE and table model Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Swing / AWT / SWT
Reply Bookmark "HELP on JTABLE and table model" Watch "HELP on JTABLE and table model" New topic
Author

HELP on JTABLE and table model

joseph dela cruz
Ranch Hand

Joined: May 17, 2012
Posts: 38

i need help on clearing tables guys
i want to clear the tables then get all the elements from JDBC again just like what it does on form load the problem is when i clear it which i did. but whenever i call the upTable it loads 6 columns instead of just three

this method is triggered by a button
also please comment on the way i put rows is it proper to use a constructor object or a different way is way much better?
Rob Spoor
Sheriff

Joined: Oct 27, 2005
Posts: 19232

Removing a column from your JTable does not remove the column from your TableModel, only from the visual representation.
Assuming you're using a DefaultTableModel, you can clear that with just two lines:

joseph dela cruz wrote:also please comment on the way i put rows is it proper to use a constructor object or a different way is way much better?

Since you create the object, get its values, then discard it, I would skip it completely:


SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: HELP on JTABLE and table model
 
Similar Threads
Mysql conncections won't close, please help!!
Spring 101: DB Table to return a Map of Code,Description.
how to improve my program code ?
How to put a list of data retrieve from database into arraylist
Problem in inserting from one table to another