I Get The Jtable But No Data
Possible Duplicate: I can’t get my JTable to show anything I can show my Table but I can't get any data in the table, just the column name. My code looks like this. public sta
Solution 1:
Unless you're using a database that supports cursors, I would take a look hard look at
while(rs.next()) {
Hentalleordreliste = rs;
}
Which would suggest that you're exhausted the result BEFORE you've tried to populate the table model...
Post a Comment for "I Get The Jtable But No Data"