Sitecore Data Providers


A Sitecore data provider exposes data as Sitecore items. The default data provider exposes data stored in Sitecore’s content repositories (SQL Server or Oracle databases). Custom data providers can be written that expose data stored in third-party systems.

Data provider basics

Before you start integrating external data with Sitecore you really need to understand how content is modeled in Sitecore. There are several concepts you need to understand:

  1. Fields
  2. Items
  3. Relationships
  4. Databases
  5. Publishing

Fields

In Sitecore content is exposed via Fields. Each field stores a value. The value can be anything: a block of formatted text, a block of simple text, a number, a reference to an image, and much more. Anything that can be represented as a value can be stored in a field.

Items

Related fields are grouped together in constructs called Items. An item is a collection of Fields. But there is more to an item. Each item has the following properties:

  • ID - a GUID (global unique identifier) that uniquely identifies an item. An ID is often expressed as a hexadecimal number, such as {BD36FFD2-211B-4B93-886C-F87DA01DCE2C}.
  • Name - a name that identifies an item. Names are not unique, but they are useful because they are easier to understand the the item ID.
  • Parent - an item has 1 parent item.
  • Children - an item may have 0-to-many child items.
  • Versions - a version is a construct that is used to save the field values that were set at a specific point in time. An item may have 1-to-many versions.

Relationships

Relationships between items can be described in a couple of ways:

  1. Hierarchy - An item has 1 parent item and it may have 0-to-many child items..
  2. Fields - An item can be linked to other items using fields. For example, a field may represent “related products”. The field value would identify the different items that are related.

Relationships between items can be followed using the following means. In order for a custom data provider to work correctly it is important to consider each of these:

  • Sitecore Content API - used to access content directly from a Sitecore database
  • Sitecore Content Search API - used to search for content

Databases

A Sitecore database exposes items using the items’ hierarchical relationships.

The root item in a Sitecore database has the name sitecore and the ID {11111111-1111-1111-1111-111111111111}. All items in a Sitecore database are descendants of the root item.

By default the following Sitecore databases are pre-configured, but additional databases can be added:

  • core - stores content that determines how the Sitecore application works
  • master - stores content available during the content authoring process
  • web - stores content available during the content delivery process

The specific items that are exposed in a Sitecore database depend on the data providers that are assigned to the Sitecore database. Each of the default Sitecore databases has a data provider assigned that exposes items stored in a relational database. These relational databases are created and specified during Sitecore installation.

Additional data providers can be assigned to a Sitecore database. When this is done, the Sitecore database may expose items stored in multiple content repositories. The result is a single hierarchy of items.

Publishing

Publishing is the process of copying items (and their content) from one Sitecore database to another.

The following links provide more information on Sitecore data providers: