CData ADO.NET Provider for RSS

This .NET Framework Class Library is provided by CData. The main functionality of the class library is contained in the file System.Data.CData.RSS.dll.

Add a reference to the assembly System.Data.CData.RSS and include the System.Data.CData.RSS namespace. Instantiate a new RSSConnection connection object. Set the connection string and open the connection.

VB.NET code sample
Imports System.Data.CData.RSS
Dim myConnection As RSSConnection = New RSSConnection()
myConnection.ConnectionString = myConnectionString
myConnection.Open()
' execute queries, etc
myConnection.Close()
C# code sample
using System.Data.CData.RSS;
RSSConnection myConnection = new RSSConnection();
myConnection.ConnectionString = myConnectionString;
myConnection.Open();
// execute queries, etc
myConnection.Close();

Description

The CData ADO.NET Provider for RSS abstracts the underlying data source into tables that can be used to retrieve data.

An important feature of ADO.NET Providers from CData is the ability to easily cache data locally. This allows the CData ADO.NET Provider for RSS to be used in an offline mode when access to the data source is not possible. It also enables complex SQL queries which otherwise are not supported by the underlying data source itself.

This provider was formerly named "RSSBus ADO.NET Provider for RSS"

More info about this class library can be found at the CData product page.

Download

This .NET Framework Class Library, CData ADO.NET Provider for RSS, can be downloaded here.

Connection Strings

The CData ADO.NET Provider for RSS class library can be used to connect to the following data sources by using the following connection string references:

RSS / Atom

Providers