Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

ADO Update Method


❮ Complete Recordset Object Reference

The Update method is used to save all changes made to a single record in a Recordset.

Note: This method will not work if the Recordset does not support updates.

Syntax

objRecordset.Update fields,values

Parameter Description
fields Optional. A field name, or an array of field names or field positions to update
values Optional. A value or an array of values for the field or array of fields you want to update

❮ Complete Recordset Object Reference