Can u please help

how to view the successive records from a sql database using java appication's result set??????????

if your sql query return multiple records in to result set you can use next() method on result set to move to the next record.
Normally the code will look like this
ResultSet rs = stmt.executeQuery('SOME QUERY');
while(rs.next()){
   //Access results here
}

Similar Messages

Maybe you are looking for