[Overview][Classes][Procedures and functions][Index] Reference for unit 'DBActns' (#lcl)

TDataSetEdit

[Properties (by Name)] [Methods (by Name)] [Events (by Name)]

TDataSetEdit edits the current record in the DataSet.

Declaration

Source position: dbactns.pp line 104

type TDataSetEdit = class(TDataSetAction)

public

  procedure ExecuteTarget(); override;

  

Retrieves the dataset for the target datasource and calls its Edit method.

  procedure UpdateTarget(); override;

  

Enables or disables the action based on the state of the dataset in the target.

published

  property DataSource: TDataSource;

  

DataSource with the dataset for the action.

end;

Inheritance

TDataSetEdit

  

TDataSetEdit edits the current record in the DataSet.

|

TDataSetAction

  

TDataSetAction is the base class for all other standard TDataSet actions.

|

TAction

  

TAction is the basic action object used in the LCL.

|

TCustomAction

  

TCustomAction is the ancestor class for TAction.

|

TContainedAction

  

Implements an Action class which has a category and parent action list.

|

TBasicAction

|

TComponent,IUnknown,IInterfaceComponentReference

|

TPersistent,IFPObserved

|

TObject

Description

TDataSetEdit is a TDataSetAction descendant which edits the current record in the dataset for the target DataSource. TDataSetEdit ensures that the dataset is placed in edit mode (when available) by calling the Edit method for the dataset. Edit behavior is dependent on the underlying database engine.

TDataSetEdit publishes the DataSource property which explicitly declares the target for the database action. The DataSource may be determined by examining a data-aware control which used the database action, and passed an an argument to the UpdateTarget and HandlesTarget methods.

See also

TDataSetFirst

  

TDataSetFirst moves to first record in the DataSet.

TDataSetLast

  

TDataSetLast moves to last record in the DataSet.

TDataSetNext

  

TDataSetNext moves to next record in the DataSet.

TDataSetPrior

  

TDataSetPrior moves to previous record in the DataSet.

TDataSetRefresh

  

TDataSetRefresh refreshes the DataSet.

TDataSetCancel

  

TDataSetCancel cancels the current edit mode for a DataSet.

TDataSetDelete

  

TDataSetDelete deletes the current record in the DataSet.

TDataSetInsert

  

TDataSetInsert inserts (appends) a new record into the DataSet.

TDataSetPost

  

TDataSetPost posts changes for the current record to the DataSet.


Version 3.2 Generated 2024-02-25 Home