Vcl.DBClientActns.TClientDataSetApply.MaxErrors

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property MaxErrors: Integer read FMaxErrors write FMaxErrors default 0;

C++

__property int MaxErrors = {read=FMaxErrors, write=FMaxErrors, default=0};

Properties

Type Visibility Source Unit Parent
property published
Vcl.DBClientActns.pas
Vcl.DBClientActns.hpp
Vcl.DBClientActns TClientDataSetApply

Description

Indicates the maximum number of errors that can be allowed when applying updates.

MaxErrors indicates the maximum number of errors that are allowed before prematurely stopping an update operation. Set MaxErrors to –1 to indicate that there is no limit to the number of errors.

TClientDataSetApply passes the value of MaxErrors as the value of the MaxErrors parameter when it calls the ApplyUpdates method of the target client dataset.

See Also