Delphi Database Control using TDatabase TUpdateSQL TDataSource TBatchMove

 TBatchMove
 TDataSource

TDataSource is a link between a dataset, that is a TTable or TQUery and a data display component.


AutoEdit property is to be set to True, then any component connected to this data source automatically switches to edit mode as soon as the user attempts to change the data displayed by the control.

 TUpdateSQL

If you set the RequestLive property of a TQuery component to True you may or may not get a live editable result set.  If Delphi is unable to supply a live result set, you can use a TUpdateSQL component in conjunction with a TQuery to specify SQL statements that Delphi will use to update the underlying table when users make changes to the read only result set returned by the query.

 TDatabase