ResultSet with concurrently updatable option
Statement stmt=con.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE);
Can we create a ResultSet with above features with a PreparedStatement?
Because a PreparedStatement is created like this--
PreparedStatement pstmt=con.prepareStatement(query);
so where is the option of specifying scroll type and concurrently updatable option?

