Bde.DBTables.TDBDataSet.UpdateMode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property UpdateMode: TUpdateMode read FUpdateMode write SetUpdateMode default upWhereAll;

C++

__property Data::Db::TUpdateMode UpdateMode = {read=FUpdateMode, write=SetUpdateMode, default=0};

Properties

Type Visibility Source Unit Parent
property protected
Bde.DBTables.pas
Bde.DBTables.hpp
Bde.DBTables TDBDataSet

Description

Determines how the Borland Database Engine (BDE) finds records when updating to an SQL database.

Use UpdateMode to specify the criteria to use when locating a record in the dataset. UpdateMode specifies whether modified records are located based on all columns (fields), on only the key fields, or on the key fields plus the original values of fields that have been modified.

See Also