ADODB Object
 
Syntax
 
string = propertyobject.Name
 
Description
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.
See Also
Command.Name, Field.Name, Parameter.Name.
Example
 
For Each objProperty In objConnection.Properties
   Debug.Print "Name = " & objProperty.Name 
   Debug.Print "Type = " & objProperty.Type 
   Debug.Print "Value = " & objProperty.Value 
Next