Product Documentation

c-treeDB API for C++ - Developers Guide

Previous Topic

Next Topic

CTRecord::First

Syntax

CTBOOL First( )

Parameters

This method has no parameters.

Description

Moves to first record in table.

Return

First returns YES if the record is found, NO otherwise.

Example


pRec->First();

do {

printf("\nName: %s", pRec ->

GetFieldAsString("name").c_str()); }

while (pRec->Next());


See also

Next(), Prev(), Last(), Find()

TOCIndex