This method of the Recordset class saves any changes you make to the current record of a Recordset object. update has the following signatures:
update()
update(Object[] valueList)
update(Object[] fieldList, Object[] valueList)
Saves changes to the current record of a Recordset object.
public void update();
Saves changes to the current record of a Recordset object.
public void update(Object[] valueList);
valueList | Represents a single value or a Variant array that represents values for the field or fields in the new record. |
Saves changes to the current record of a Recordset object.
public void update(Object[] fieldList, Object[] valueList);
fieldList | Represents a single name or a Variant array that represents names or ordinal positions of the field or fields you wish to modify. |
valueList | Represents a single value or a Variant array that represents values for the field or fields in the new record. |