Quantcast
Channel: S. Nageswara Rao, Corporate Trainer – Way2Java
Viewing all articles
Browse latest Browse all 505

Scrollable ResultSet

$
0
0
You retrieved records from database earlier in Select Records Example by iterating the records with the ResultSet object as follows. In the same example, you also have seen the ResultSet cursor movement in while loop. while(res.next()) { System.out.println(res.getInt(1) + "\t" + res.getString(2) + "\t" + res.getDouble(3)); } The above loop prints the records from top […]

Viewing all articles
Browse latest Browse all 505

Trending Articles