How to display ResultSet in JTable. i am using this code
String [] record= new String[ColCount]; for (i=0; i
You need to put a while loop around your code to iterate over the result set. eg,
while(rset1.next()) { //do something }