Data.Win.ADODB.TCustomADODataSet
Delphi
TCustomADODataSet = class(TDataSet, IUnknown, RecordsetEventsVt)
C++
class PASCALIMPLEMENTATION TCustomADODataSet : public Data::Db::TDataSet
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
class | public | Data.Win.ADODB.pas Data.Win.ADODB.hpp |
Data.Win.ADODB | Data.Win.ADODB |
Description
TCustomADODataSet is the virtualized base class for all ADO dataset components.
TCustomADODataSet encapsulates a set of properties, events, and methods for working with data accessed through an ADO (ActiveX Data Objects) provider. TCustomADODataSet is the base class from which all ADO dataset components descend. Applications should never instantiate TCustomADODataSet objects. Instead, instantiate an object from one of the descendant classes: TADODataSet, TADOTable, TADOQuery, or TADOStoredProc.
TCustomADODataSet cannot be instantiated. Developers must use or derive descendants of TCustomADODataSet that declare and implement methods with no implementation in TCustomADODataSet. Many of the other TCustomADODataSet methods are declared and implemented in TCustomADODataSet as virtual methods, but the implementations are merely stubs that are reimplemented in descendants such as TADODataSet, TADOQuery, TADOStoredProc, and TADOTable.