API:Data.DBXCommonTable.TDBXJSONTableReader

From RAD Studio API Documentation
Jump to: navigation, search

Data.DBXCommon.TDBXReaderData.DBXCommon.TDBXValueListSystem.TObjectTDBXJSONTableReader

Delphi

TDBXJSONTableReader = class(TDBXReader)

C++

class PASCALIMPLEMENTATION TDBXJSONTableReader : public Data::Dbxcommon::TDBXReader

Properties

Type Visibility Source Unit Parent
class public
Data.DBXCommonTable.pas
Data.DBXCommonTable.hpp
Data.DBXCommonTable Data.DBXCommonTable

Description

TDBXReader provides a unidirectional reader for a collection of database rows.

Data.DBXCommonTable.TDBXJSONTableReader inherits from Data.DBXCommon.TDBXReader. All content below this line refers to Data.DBXCommon.TDBXReader.

TDBXReader provides a unidirectional reader for a collection of database rows.

TDBXReader provides a forward only reader for a collection of database rows.

TDBXReader is returned by TDBXCommand.ExecuteQuery. Call TDBXReader.Next to access the first and successive rows in the collection. Row values can be accessed using the Value array property. Value is overloaded so it can be indexed either by ordinal position or by column name.

Note: When an application no longer needs a TDBXReader instance, it should call TDBXReader.Free. This ensures that all resources associated with the TDBXReader are released.

See Also