Skip to main content

PivotGridControl.OLAPDataProvider Property

Gets or sets which data provider should be used to bind to an OLAP cube.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v23.2.dll

NuGet Package: DevExpress.Win.PivotGrid

Declaration

[DefaultValue(OLAPDataProvider.Default)]
public OLAPDataProvider OLAPDataProvider { get; set; }

Property Value

Type Default Description
OLAPDataProvider Default

A OLAPDataProvider enumeration member that specifies which data provider should be used to bind to an OLAP cube.

Available values:

Name Description
Default

The default OLAP provider (see the respective property description for details).

Adomd

The ADOMD.NET data provider.

OleDb

The OLE DB data provider.

Xmla

The XMLA data access standard.

Remarks

Pivot Grid Control can use one of the following data providers to communicate with the Microsoft Analysis Services server.

  • OLE DB for OLAP

    Provides basic OLAP binding capabilities.

  • ADOMD.NET

    Offers certain performance gains when compared to OLE DB, and yet allows you to retrieve OLAP member format strings and properties from the server.

  • XMLA

    An open XML-based standard that does not require any data access libraries or data providers to be installed on the client system. Nevertheless, it supports all OLAP features available in OLE DB and ADOMD.NET.

The following code snippets (auto-collected from DevExpress Examples) contain references to the OLAPDataProvider property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also