AdoRecordset:CloseOnAxit

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

AdoRecordset:CloseOnAxit

Return to chapter overview

Purpose

 

Prototype

ACCESS CloseOnAxit AS LOGIC 

 

LOGIC        Does the recordset automatically get closed when X# discards the object.

 

The default value for this property is TRUE: this causes the recordset to be automatically closed when the X# object gets collected by the X# garbage collector.

The only situation where this is not applicable is when there are more than one X# object pointing to the COM recordset. This may happen if you make a 'Clone' of the recordset by calling:

AdoRecordSet:AsOleAutoObject

AdoRecordSet:AsVoComObject

AdoRecordSet:Init() with another recordset as parameter

In all these cases Xs2Ado will automatically set this property to FALSE.

It is up to you to close the recordset in these cases.

 

See Also

AdoRecordset, AdoRecordSet:Close()