hi all, i've set my connection type to be updatable but i couldn't set the same property for the resultset because there's no method available for the same.
the following code gives me exception rs.updateString("field1","1"); rs.updateRow();
The ResultSet interface allows the driver to ignore this request without even notifying you! If you find that it is actually updatable then try setting the connection's autocommit to false and manually commit the changes. Jamie
[This message has been edited by Jamie Robertson (edited September 07, 2001).]