Поделиться через


DBProviderInfos.Item Property

Returns a DBProviderInfo object from the collection.

Пространство имен: Microsoft.SqlServer.Dts.Runtime
Сборка: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)

Синтаксис

'Декларация
Public ReadOnly Default Property Item ( _
    index As Object _
) As DBProviderInfo
public DBProviderInfo this [
    Object index
] { get; }
public:
property DBProviderInfo^ default [Object^] {
    DBProviderInfo^ get (Object^ index);
}
/** @property */
public DBProviderInfo get_Item (Object index)

Параметры

  • index
    The name, description, or index of the DBProviderInfo object to return.

Значение свойства

A DBProviderInfos object.

Замечания

If the call to Contains method returns true, you can access the specified element in the collection by using the syntax DBProviderInfos[index]. If the Contains returns false, this property will throw an exception. In C#, this property is the indexer for the DBProviderInfos class.

Пример

The following code example retrieves an item from the collection using two methods. The first method uses the dbprovInfos[0] syntax to retrieve the entire object located in the first position of the collection and place it in the dbInfo object. You can now retrieve all properties from the dbInfo object as usual. The second method demonstrates how to retrieve a specific property from the first object in the collection.

using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;

namespace DBProvInfos_GetEnum
{
    class Program
    {
        static void Main(string[] args)
        {
            Application app = new Application();
            DBProviderInfos dbprovInfos = app.DBProviderInfos;

            //Using the Item method syntax of [x], obtain the first entry.
            DBProviderInfo dbInfo = dbprovInfos[0];
            String nameOfFirstItem = dbprovInfos[0].Name;

            //Print the name of the log provider object located at position [0].
            Console.WriteLine("The db provider type of the first provider is: {0}", dbInfo.ProviderType);
            Console.WriteLine("The Name of the first database provider is: {0}", nameOfFirstItem);
        }
    }
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
 
Namespace DBProvInfos_GetEnum
    Class Program
        Shared  Sub Main(ByVal args() As String)
            Dim app As Application =  New Application() 
            Dim dbprovInfos As DBProviderInfos =  app.DBProviderInfos 
 
            'Using the Item method syntax of [x], obtain the first entry.
            Dim dbInfo As DBProviderInfo =  dbprovInfos(0) 
            Dim nameOfFirstItem As String =  dbprovInfos(0).Name 
 
            'Print the name of the log provider object located at position [0].
            Console.WriteLine("The db provider type of the first provider is: {0}", dbInfo.ProviderType)
            Console.WriteLine("The Name of the first database provider is: {0}", nameOfFirstItem)
        End Sub
    End Class
End Namespace

Sample Output:

The db provider type of the first provider is: OleDb

The Name of the first database provider is: MediaCatalogDB OLE DB Provider

Синхронизация потоков

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Платформы

Платформы разработки

Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.

Целевые платформы

Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.

См. также

Справочник

DBProviderInfos Class
DBProviderInfos Members
Microsoft.SqlServer.Dts.Runtime Namespace