Skip to content

Latest commit

 

History

History
54 lines (42 loc) · 4.14 KB

implementing-a-data-processing-extension.md

File metadata and controls

54 lines (42 loc) · 4.14 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic ms.custom helpviewer_keywords
Implement a data processing extension
Find out how to create a bridge between a data source and a dataset in Reporting Services by implementing a data processing extension.
kfollis
kfollis
09/25/2024
reporting-services
extensions
reference
updatefrequency5
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