API:Data.Win.ADODB.TADOQuery

From RAD Studio API Documentation
Jump to: navigation, search

Data.Win.ADODB.TCustomADODataSetData.DB.TDataSetSystem.Classes.TComponentSystem.Classes.TPersistentSystem.TObjectTADOQuery

Delphi

TADOQuery = class(TCustomADODataSet)

C++

class PASCALIMPLEMENTATION TADOQuery : public TCustomADODataSet

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.

Data.Win.ADODB.TADOQuery inherits from Data.Win.ADODB.TCustomADODataSet. All content below this line refers to Data.Win.ADODB.TCustomADODataSet.

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.

See Also