Skip Headers

Oracle® Objects for OLE Developer's Guide
10g Release 1 (10.1)

Part Number B10118-01
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Master Index
Master Index
Go to Feedback page
Feedback

FindFirst, FindLast, FindNext, FindPrevious Methods

See Also
Example
FindFirst Method

Applies To

OraDynaset

Where FindClause is any valid SQL where clause without the 'WHERE'.

Description

These methods find the indicated rows in the dynaset that matches FindClause. FindClause can be any valid where clause without the 'WHERE'. If the current FindClause matches the last clause from the previous Find, the current FindClause is not re-parsed.

These methods move the current row directly to a matched row without calling any advisories except when the matched row is reached. If a matching row cannot be found, the NoMatch property is set to TRUE and you remain in the row you started.

Usage

oradynaset.FindFirst FindClause

oradynaset.FindLast FindClause

oradynaset.FindNext FindClause

oradynaset.FindPrevious FindClause

Remarks

You can use the following types of expressions in the FindClause:

· simple queries, such as "deptno = 20"

· queries involving complex expressions, such as "sal + 100 > 1000".

· SQL function calls, such as "UPPER(ename) = SCOTT' " or "NVL(comm, 0) = 0" .

· subqueries, such as "deptno in (select deptno from dept)".

The like operator will not work in multibyte languages. Table or synonym "DUAL' is required in user's schema. Date values are retrieved and compared in VB format which is actually the format specified in the Control Panel. Therefore, date comparisons will fail if any other format such as the default Oracle format DD-MON-YYYY is used.

SQL function TO_CHAR (date,fmt) cannot be used because the first argument must be a date in native Oracle format and OO4O only handles 'string dates'.

SQL function TO_DATE will convert a string to a date, but the OIP will convert it back to a string in VB format as previously described and the comparison may still fail.

FindPrevious and FindLast in a NO_CACHE dynaset will not work; NoMatch will be set to TRUE.

Note: To avoid raising an error, check for EOF or BOF before calling a Find method.