Icon TDataSetState

Unit: WebData

TDataSetState = (dsClosed,dsBrowse,dsInsert,dsUpdate)

Available In: Client and Server Applications

The TDataSetState enumerated type is used to indicate the State of a TDataSet instance.

ElementDescription
dsBrowseIndicates that the dataset is open and in the browse (read) state.
dsClosedIndicates that the dataset is closed.
dsInsertIndicates that the dataset is open and in the insert state. A dataset is put into the insert state by calling the Insert method.
dsUpdateIndicates that the dataset is open and in the update state. A dataset is put into the update state by calling the Update method.
Image