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?

[389 byte] By [Vinodbhai@suna] at [2007-11-27 9:37:34]
# 1
Collection class is also having the following methodprepareStatement(String sql, int resultSetType, int resultSetConcurrency)
SidGatea at 2007-7-12 23:09:07 > top of Java-index,Java Essentials,Java Programming...