Data.Win.ADODB.TCustomADODataSet.MarshalOptions
| [–] Properties | |
|---|---|
| Type: property | |
| Visibility: published | |
| Source: Data.Win.ADODB.pas Data.Win.ADODB.hpp
| |
| Unit: Data.Win.ADODB | |
| Parent: TCustomADODataSet | |
Delphi
property MarshalOptions: TMarshalOption read GetMarshalOptions write SetMarshalOptions default moMarshalAll;
C++
__property TMarshalOption MarshalOptions = {read=GetMarshalOptions, write=SetMarshalOptions, default=0};
Description
Specifies which records are marshaled back to the server.
Use MarshalOptions when the dataset component uses a client-side cursor and data changes are to be sent back to the server. MarshalOptions specifies which records in the local recordset are sent to the middle tier or server. A value of moMarshalAll results in all records in the local recordset being packaged and sent back. A value of moMarshalModifiedOnly sends back only those records that have actually been changed in the local recordset The default value for MarshalOptions is moMarshalAll.