ADODB Object
 
Syntax
 
Description
The Item property is used to return a specific member of the Properties Collection. The Index parameter is a variant. It can be the named item or the position (ordinal) number.
See Also
 
Example
 
MyProperty = objCommand.Properties.Item(5)
'Or:
MyProperty = objCommand.Properties(5)
'Or:
MyProperty = objCommand.Properties("Transaction DDL")