find( )

Within an AGDBSearch object created with createSearch( ), finds the next row that satisfies the search criteria.

Interface

AGDBSet

IDL definition
boolean find(AGDBSearch searchset);
ADO equivalent

Find method

JavaScript synopsis
dbset.find(searchset)
C synopsis
PODSBoolean AVfind(
  AGDBSet* dbset,
  AGDBSearch* searchset
);
Parameters
  • dbset   The AGDBSet object.

  • searchset   [in] An AGDBSearch object created with createSearch( ).

Returns

TRUE if a matching record is found; FALSE otherwise.

Remarks

The search criteria are set by createSearch( ). If the criteria are met, the current row position is set on the found record; otherwise, the position is set to the end of the AGDBSet object.

See also

createSearch( ), moveNext( )


Moving the row pointer for the next find( )