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 MarshalOptions Property


❮ Complete Recordset Object Reference

The MarshalOptions property sets or returns a MarshalOptionsEnum value that specifies which records are to be returned back to the server. Default is adMarshalAll.


Syntax

objRecordset.MarshalOptions

Example

<%
if rs.MarshalOptions=adMarshalAll then
  rs.Update
  response.write("All records returned to server")
end if
%>

MarshalOptionsEnum Values

Constant Value Description
adMarshalAll 0 Default. Returns all rows
adMarshalModifiedOnly 1 Returns only modified rows

❮ Complete Recordset Object Reference