// New in JDBC 2.0
PreparedStatement ps2 = conn.prepareStatement(sqlString,
ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATEABLE);
// New in JDBC 3.0
PreparedStatement ps3 = conn.prepareStatement(sqlString,
ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATEABLE,
ResultSet.HOLD_CURSOR_OVER_COMMIT);
3 comments:
nice post !!
Nice Post!! Is there a way to get specific records by specifying from position and to position.
Thanks for this post ! It was really helpful.
Post a Comment