MarshalOptions - property of the AdoRecordset object
Description:
The property returns or sets a value that specifies which records are to be returned to the server.
The property returns or sets the
MarshalOptionsEnum value that specifies which records are to be returned back to the server.
Syntax:
Long MarshalOptions
Values:
0 - adMarshalAll (Default) Returns all rows.
1 - adMarshalModifiedOnly Returns only modified rows.
Note:
Property access for read and write.
Example:
JavaScriptVBScriptSelect and copy to clipboard
oRs.MarshalOptions = 1;
oRs.MarshalOptions = 1