Literal Row Identity Property

ADO and SQL Server

ADO and SQL Server

Literal Row Identity Property

The Literal Row Identity property indicates whether an application can perform a binary comparison of two row handles to determine whether they point to the same row.

Applies To
Command Object Recordset Object
Syntax

object.Properties("Literal Row Identity")

Parts

object

Expression that evaluates to an object in the Applies To list.

Returns

One of the following settings:

Value Description
True The application can perform a binary comparison of two row handles to determine whether they point to the same row.
False Multiple and concurrently held row handles can represent the same row in the underlying database. To the recordset, these generally appear as separate rows. Therefore, a change made to a retrieved column value is not reflected when retrieving the row through a second row handle.

Data Type

adBoolean

Modifiable

Read-only

OLE DB Property

DBPROP_LITERALIDENTITY

Remarks

The Strong Row Identity property specifies whether the handle of a newly inserted row can be successfully compared to another handle.

See Also

Strong Row Identity Property