Microsoft SDK for Java

update

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)

update()

Saves changes to the current record of a Recordset object.

Syntax

public void update();

update(Object[] valueList)

Saves changes to the current record of a Recordset object.

Syntax

public void update(Object[] valueList);

Parameters

valueList Represents a single value or a Variant array that represents values for the field or fields in the new record.

update(Object[] fieldList, Object[] valueList)

Saves changes to the current record of a Recordset object.

Syntax

public void update(Object[] fieldList, Object[] valueList);

Parameters

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.

© 1999 Microsoft Corporation. All rights reserved. Terms of use.