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 "<span style='color: #004080; font-weight: bold;'>Name</span> = " & objProperty.Name
Debug.Print "<span style='color: #0000FF; font-weight: bold;'>Type</span> = " & objProperty.Type
Debug.Print "Value = " & objProperty.Value
Next