AdoRecord:Source Access

<< Click to Display Table of Contents >>

Navigation:  Ado 2.5+ Classes > AdoRecord Class >

AdoRecord:Source Access

Previous pageReturn to chapter overviewNext page

Purpose

 

The data source or object represented by the Record.

 

Prototype

 

ACCESS Source AS USUAL PASCAL CLASS AdoRecord

 

 

Description

 

The Source property returns the Source argument of the Record object Open method. It can contain an absolute or relative URL string. An absolute URL can be used without setting the ActiveConnection property to directly open the Record object. An implicit Connection object is created in this case.

 

The Source property can also contain a reference to an already open Recordset, which opens a Record object representing the current row in the Recordset.

 

The Source property could also contain a reference to a Command object which returns a single row of data from the provider.

 

See Also

 

AdoRecord, AdoCommand, AdoRecordSet, AdoConnection, AdoRecord:Source