I have a java app to update a database, but i get this error:
ERROR: SQL Exception: 'updateString' not allowed because the ResultSet is not an updatable ResultSet.
Howevere, my resultset is updatable since i have:
Statement s = con.createStatement(
ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
Any ideas why i am getting this error.
Thanks in advance. :)