GetValue
Hi All
I retreiving resultset from a database and store it in a Vector, I want this Vector to feed a JTable, I implemented getValueAt()
method to return the contents of the vector in the JTable like the following:
public Object getValueAt(int row,int col ){
return results.get( col );
}
but that didn't work, and the first record is repeated for every JTable row.
Any help please?
Jotnarta
Message was edited by:
jotnarta

