Index - property of the AdoRecordset object
Description:
The property returns or sets the name of the current index in the
AdoRecordset object.
This property is used in conjunction with the
Seek method.
If the underlying provider does not support the
Index property, and thus the
Seek method, then consider to call the
Find method instead.
Note:
Property access for read and write.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var sName = oRs.Index;
// Reading from the property
Dim sName
sName = oRs.Index
' Reading from the property