Delphi Learn How To Retrieve Data And Manage Cached Updates With TFDMemTable In Delphi

FireWind

Свой
Регистрация
2 Дек 2005
Сообщения
1,957
Реакции
1,199
Credits
4,009
Learn How To Retrieve Data And Manage Cached Updates With TFDMemTable In Delphi
January 31, 2021 by Konstantin Tomov

The CachedUpdates sample shows you how to work with the Для просмотра ссылки Войди или Зарегистрируйся class. To this end, Для просмотра ссылки Войди или Зарегистрируйся retrieves data from a database through Для просмотра ссылки Войди или Зарегистрируйся and Для просмотра ссылки Войди или Зарегистрируйся. Then, the sample uses some methods and properties of Для просмотра ссылки Войди или Зарегистрируйся in order to implement some features related with the management of Для просмотра ссылки Войди или Зарегистрируйся.

Location​

You can find the CachedUpdates sample project at:
  • Start | Programs | Embarcadero RAD Studio Sydney | Samplesand then navigate to:
    • Object PascalDatabaseFireDACSamplesComp LayerTFDMemTableCachedUpdates
  • Subversion Repository:
    • You can find Delphi code samples in Для просмотра ссылки Войди или Зарегистрируйся. Search by name into the samples repositories according to your RAD Studio version.
1612127289312.png

How to Use the Sample​

  1. Navigate to the location given above and open CDS_CachedUpdates.dproj.
  2. Press F9 or choose Run > Run.
  3. Click on the Use Connection Definitioncombo box and select an option.
    • Modify the tables and interact with the provided buttons.

Files​

File in DelphiContains
CDS_CachedUpdates.dproj
CDS_CachedUpdates.dpr
The project itself.
fCachedUpdates.pas
fCachedUpdates.fmx
The main form.

Implementation​

This sample uses three main components:
When you run the application, click on the Use Connection Definition combo box and select an option in order to Для просмотра ссылки Войди или Зарегистрируйся. When you select an item of the combo box, the Для просмотра ссылки Войди или Зарегистрируйся property is set to True in order to open a dataset and read data from a database. Then, the sample displays a Для просмотра ссылки Войди или Зарегистрируйся using a Для просмотра ссылки Войди или Зарегистрируйся component. Once the Для просмотра ссылки Войди или Зарегистрируйся is filled, you can interact with the sample. Each of the following buttons implements an Для просмотра ссылки Войди или Зарегистрируйся event to do what is described below:
  • The RevertRecord button uses the Для просмотра ссылки Войди или Зарегистрируйся method to undo changes to the current record and remove it from the dataset changes log.
  • The UndoLastChange button uses the Для просмотра ссылки Войди или Зарегистрируйся method to undo the last modification to the dataset records and remove the change from the dataset change log.
  • The CancelUpdates button uses the Для просмотра ссылки Войди или Зарегистрируйся method to remove all records from the change log and restore the dataset rows to their prior editing state.
  • The ApplyUpdates button uses the Для просмотра ссылки Войди или Зарегистрируйся method to apply changes for all records in the dataset change journal to the database.
Note: These methods may be used only when the CachedUpdates property is set to True. To check it, select the DataSource1 object attached to the Для просмотра ссылки Войди или Зарегистрируйся named cdsOrders and see the CachedUpdates property of the DataSet property on the Для просмотра ссылки Войди или Зарегистрируйся.

To get more details on this sample, please visit the link below:
Для просмотра ссылки Войди или Зарегистрируйся
Для просмотра ссылки Войди или Зарегистрируйся