Item - method of the Collection object
Description:
The property represents a collection item specified in the Id parameter.
Syntax:
Object Item(Variant Id)
Parameters:
Id | (Variant) Specifies the collection item. The value is:
- Name (String, case sensitive text, for example "d1") or
- Index (Long, zero-based index) |
---|
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oAdoField = oRs.Fields.Item("value");
Dim oAdoField
Set oAdoField = oRs.Fields.Item("value")