Data.DBXCommonTable.TDBXTable.Next

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Next: Boolean; virtual; abstract;

C++

virtual bool __fastcall Next() = 0 ;

Properties

Type Visibility Source Unit Parent
function public
Data.DBXCommonTable.pas
Data.DBXCommonTable.hpp
Data.DBXCommonTable TDBXTable

Description

Moves to the next row of the table.

Next moves to the next row of the table. The method returns True if the operation succeeded, and False otherwise. Next is abstract, so every descendant of TDBXTable must implement this method in order to use it.

See Also