ADO » Property » Name

Syntax:
string = fieldobject.Name

Sets or returns a string value that is the name of the Property object.

The Name property returns a string that is the name of the Property object. The name can also be obtained from the Properties Collection.
 
The Name property is also used by the Command, Field, and Parameter objects.

Examples

Code:
For Each objProperty In objConnection.Properties
   Response.Write "Name = " & objProperty.Name & VBCRLF
   Response.Write "Type = " & objProperty.Type & VBCRLF
   Response.Write "Value = " & objProperty.Value & VBCRLF
Next

See Also: