IDataSourceCollection::Item

 
IDataSource *Item(
                   VARIANT vt // VT_BSTR, VT_I2, VT_I4, VT_UI4
);
 

Return Values

 
This method returns the IDataSource interface pointer from this DataSourceCollection.
 

Remarks

 
Searches for a DataSource based on the variant type passed in:
 
  • VT_BSTR - Find the DataSource by its name
  • VT_I2, VT_I4, VT_UI4 - Find the DataSource by its index or ID
 

Also See