ActiveReports 19 .NET Edition
MESCIUS.ActiveReports Assembly / GrapeCity.ActiveReports.Configuration Namespace / DataProviderInfo Structure / DataProviderInfo Constructor
The name that can be used to refer to the data provider in reports.
The fully assembly-qualified name of the class that implements System.Data.Common.DbProviderFactory for this provider.
The fully assembly-qualified name of the class that implements additional features like setting of multivalue parameters and others.

In This Topic
    DataProviderInfo Constructor
    In This Topic
    Initializes a new instance of the DataProviderInfo struct.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal invariantName As String, _
       ByVal assemblyQualifiedName As String, _
       ByVal adapterAssemblyQualifiedName As String _
    )
    public DataProviderInfo( 
       string invariantName,
       string assemblyQualifiedName,
       string adapterAssemblyQualifiedName
    )

    Parameters

    invariantName
    The name that can be used to refer to the data provider in reports.
    assemblyQualifiedName
    The fully assembly-qualified name of the class that implements System.Data.Common.DbProviderFactory for this provider.
    adapterAssemblyQualifiedName
    The fully assembly-qualified name of the class that implements additional features like setting of multivalue parameters and others.
    Remarks
    This constructor should not be used directly in application code. It is designed for internal operations within the product libraries and may change or be removed in future versions without notice.
    See Also