Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 4.1 KB

File metadata and controls

52 lines (40 loc) · 4.1 KB
title Implement a data processing extension
description Find out how to create a bridge between a data source and a dataset in Reporting Services by implementing a data processing extension.
ms.date 09/25/2024
ms.service reporting-services
ms.subservice extensions
ms.topic reference
ms.custom
updatefrequency5
helpviewer_keywords
custom data processing extensions [Reporting Services]
data sources [Reporting Services], data processing extensions
data processing extensions [Reporting Services]
extensions [Reporting Services], data processing

Implement a data processing extension

Data processing extensions in [!INCLUDEssRSnoversion] enable you to connect to a data source and retrieve data. They also serve as a bridge between a data source and a dataset. [!INCLUDEssRSnoversion] data processing extensions are modeled after a subset of the [!INCLUDEmsCoName] [!INCLUDEdnprdnshort] data provider interfaces.

In this section

Data processing extensions overview
Introduces how to write a custom data processing extension for [!INCLUDEssRSnoversion].

Prepare to implement a data processing extension
Describes the interfaces available when implementing an [!INCLUDEssRSnoversion] data processing extension, and when you're required to implement a particular interface.

Create a data processing extension library
Describes assigning a namespace for your [!INCLUDEssRSnoversion] data processing extension and compiling your data processing extension into a library DLL.

Implement a Connection class for a data processing extension
Describes the attributes of a connection and how to implement your own Connection class for your data processing extension.

Implement a Command class for a data processing extension
Describes the attributes of a command, and how to implement your own Command class for your data processing extension.

Implement a DataReader class for a data processing extension
Describes the attributes of a data reader and how to implement your own DataReader class for your data processing extension.

Use an external dataset with Reporting Services
Describes how to expose your custom DataSet objects to the report server for consumption.

Deploy a data processing extension
Describes how to deploy your data processing extension.

Debug data processing extension code
Describes how to debug code in your data processing extensions.

For a sample of a fully implemented data processing extension, see SQL Server Reporting Services Product Samples.

Related content