When a ResultSet object is created with update capability, you can call updateXXX() methods to update column values to prepare for calling updateRow() or insertRow() method store the updated row or a new row to the target table.
So updateXXX() methods do not update without call to updateRow().
If I understood it correctly, I think the question is whenther you can update without a call to the updateRow or insertRow. At first I also missed the "without" part. – CoolBeansFeb 1 '11 at 5:09
@CoolBeans, @ktm5124: if this is the case then you can use PreparedStatement to update the db. – Harry JoyFeb 1 '11 at 5:15
Surely. I am not sure of the OP's intentions. I was just trying to clarify the question. – CoolBeansFeb 1 '11 at 5:20
@CoolBeans: i'm also just providing option if thats the case. – Harry JoyFeb 1 '11 at 5:23
@CoolBeans: Harry Joy interpeted my question correctly. I wanted to know if updateXXX ever updated without a call to updateRow. Thanks. – ktm5124Feb 1 '11 at 16:31