Name - property of the AdoField object
Description:
Column name.
Note:
Property access
for read and write.
Caution! The property is designed for read and write, when creating the
AdoRecordset object. The property is read-only if the
AdoRecordset object is already connencted.
Example1:
JavaScriptVBScriptSelect and copy to clipboard
var oAdoField = oRs.Fields.Item("value");
var sName = oAdoField.Name;
Dim oAdoField, sName
Set oAdoField = oRs.Fields.Item("value")
sName = oAdoField.Name