<ADODB_Recordset>.BOF

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > ADODB > ADODB Module Classes > ADODB_Recordset > ADODB_Recordset Properties >

<ADODB_Recordset>.BOF

 

Description

 
Returns %True if the current record position is before the first record in an ADODB_Recordset

 

Syntax

 

n = <ADODB_Recordset>.BOF

 

Returns

 

Number: %True or %False.

 

Parameters

 

Name

Type

Optional

Meaning





 

Remarks

 

The ADODB_RecordSet.BOF and ADODB_RecordSet.EOF properties are set to %True if you open an empty Recordset. ADODB_RecordSet.RecordCount property is zero.

 

If an ADODB_Recordset holds at least one record, the first record is the current and the BOF and EOF properties are %False

 

Restrictions

 

See also

 

Examples