AdoField:UnderlyingValue Access

<< Click to Display Table of Contents >>

Navigation:  Ado Classes > AdoField Class >

AdoField:UnderlyingValue Access

Previous pageReturn to chapter overviewNext page

Purpose

The Field's current value in the database.

 

Prototype

ACCESS UnderlyingValue (  )  AS USUAL 

 

Data Type

 

Description

Use the UnderlyingValue property to return the current field value from the database. The field value in the UnderlyingValue property is the value that is visible to your transaction and may be the result of a recent update by another transaction. This may differ from the OriginalValue property, which reflects the value that was originally returned to the Recordset.

 

This is similar to using the Resync method, but the UnderlyingValue property returns only the value for a specific field from the current record. This is the same value that the Resync method uses to replace the Value property.

 

When you use this property with the OriginalValue property, you can resolve conflicts that arise from batch updates.

 

 

See Also

AdoField, AdoField:OriginalValue, AdoField:Value