Posted By:
Bozhidar_Bozhanov
Posted On:
Monday, September 4, 2006 04:26 AM
Yesterday I used the updatable feature of the ResultSet (MySQL JDBC)
Is it normal, that after:
rs.updateString("name", newname);
this:
rs.getString("name");
still returns the oldname.
I should call rs.updateRow() so that the changes take effect, but that is what I don't prefer to do, due to speed optimization.