DBAdapt.TDataSetAdapterBrowseRowAction
Contents |
Delphi Information
From DBAdapt.pas
TDataSetAdapterBrowseRowAction = class(TCustomDataSetAdapterRowAction)
Unit: DBAdapt
Type: class
Inherited Class Members: DBAdapt.TDataSetAdapterBrowseRowAction Members
Class Constructors & Destructors: DBAdapt.TDataSetAdapterBrowseRowAction Constructors
C++ Information
From DBAdapt.hpp
TDataSetAdapterBrowseRowAction = class(TCustomDataSetAdapterRowAction)
Unit: DBAdapt
Type: class
Inherited Class Members: DBAdapt.TDataSetAdapterBrowseRowAction Members
Class Constructors & Destructors: DBAdapt.TDataSetAdapterBrowseRowAction Constructors
Description
TDataSetAdapterBrowseRowAction applies the updates from an HTTP request to a single record of an adapter's dataset and changes the dataset adapter to browse mode.
Add TDataSetAdapterBrowseRowAction to a dataset adapter (TDataSetAdapter) to support HTML forms that can change from editing or inserting database information to read-only viewing of the data. When this action is executed, it positions the parent dataset on the record specified by the current request object and updates any fields for which new values are included in the current request. It then changes the parent dataset's mode to browse mode.
Server-side script addresses this action as the 'BrowseRow' action of the parent adapter. This action is included by default when the adapter is used to build forms that represent a multiple database records.