I am working on Postgresql9.1 DB and JDBC, and want to update column value , but for doing so DB software must support updatable resultset , does 9.1 version support Updatable resultsets?
Thanks
Statement.executeUpdate()
which I find much cleaner anyway. But if you are already working with it, it will take you only a couple of minutes to try it out - a_horse_with_no_name 2012-04-04 06:46
yes it does. see ResultSet.CONCUR_UPDATABLE as Parameter of your Statements factory method.