Reference > Glossaries > Sample Datasets supplied as XML

Sample Datasets supplied as XML

Several simple databases are included with the SharpPlot distribution to allow you to experiment with grouping and splitting data. The smallest of these is an invented Sales Information database with two products and some monthly figures:

Products Table
==============
 
 Column Name   Data Type      Allow Null  Unique 
 -----------   ---------      ----------  ------ 
 Product Id    System.String           0       1 
 Product Name  System.String           1       0 
 
Sales Table
===========
 
 Column Name  Data Type        Allow Null  Unique 
 -----------  ---------        ----------  ------ 
 Date         System.DateTime           0       0 
 Year         System.Int32              1       0 
 Month        System.String             1       0 
 Quarter      System.String             1       0 
 Product      System.String             0       0 
 Sales        System.Int32              1       0 

There are two products, and 30 entries in the sales information.

See also ...

Grouping and Splitting Database Data


Send comments on this topic
© Dyalog Ltd 2013