Product Documentation

c-treeDB API for C# - Developers Guide

Previous Topic

Next Topic

CTRecord.First

Syntax

bool First( )

Parameters

This method has no parameters.

Description

Moves to first record in table.

Return

First returns true if the record is found, false otherwise.

Example

pRec->First();

do {

Console.Write("\nName: {0}", pRec ->

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

while (pRec->Next());

See Also

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

TOCIndex