Udostępnij za pośrednictwem


Zewnętrzne zestawu danych przy użyciu usług raportowania

DataSet obiektu jest centralnej obsługi odłączony, rozpowszechniany scenariuszy danych z ADO.NET.DataSet obiektu jest reprezentacją rezydentny danych, który zapewnia spójny model programowania relacyjnej niezależnie od źródło danych.Można z wielu różnych źródeł danych, z danymi XML lub zarządzanie danymi lokalne dla aplikacji.DataSet obiekt reprezentuje kompletny zestaw danych, w tym tabele pokrewne, ograniczenia i relacje między tabelami.Z powodu DataSet uniwersalność obiektu przechowywanie i ujawnienia danych, dane często mogą być przetwarzane i przekształcone DataSet obiekt przed wszelkie raportowania danych występuje.

Z Reporting Services rozszerzenia, przetwarzania danych można zintegrować wszelkie niestandardowe DataSet obiektów, które są tworzone przez aplikacje zewnętrzne.W tym tworzenie niestandardowej rozszerzenie przetwarzania danych w Reporting Services że działa jak mostka między z DataSet obiekt i serwer raportów.Większość kodu przetwarzania to DataSet obiekt jest zawarty w elementu DataReader , można utworzyć klasy.

Pierwszym krokiem narażania swojego DataSet obiektu serwer raportów jest wprowadzenie metoda określonego dostawca w sieci elementu DataReader klasy, który można wypełnić DataSet obiektu.Poniższy przykład pokazuje sposób załadować dane statyczne DataSet obiektu za pomocą metoda specyficzne dla dostawca w sieci elementu DataReader klasy.

'Private members of the DataReader class
Private m_dataSet As System.Data.DataSet
Private m_currentRow As Integer

'Method to create a dataset
Friend Sub CreateDataSet()
   ' Create a dataset.
   Dim ds As New System.Data.DataSet("myDataSet")
   ' Create a data table. 
   Dim dt As New System.Data.DataTable("myTable")
   ' Create a data column and set various properties. 
   Dim dc As New System.Data.DataColumn()
   dc.DataType = System.Type.GetType("System.Decimal")
   dc.AllowDBNull = False
   dc.Caption = "Number"
   dc.ColumnName = "Number"
   dc.DefaultValue = 25
   ' Add the column to the table. 
   dt.Columns.Add(dc)
   ' Add 10 rows and set values. 
   Dim dr As System.Data.DataRow
   Dim i As Integer
   For i = 0 To 9
      dr = dt.NewRow()
      dr("Number") = i + 1
      ' Be sure to add the new row to the DataRowCollection. 
      dt.Rows.Add(dr)
   Next i

   ' Fill the dataset.
   ds.Tables.Add(dt)

   ' Use a private variable to store the dataset in your
   ' DataReader.
   m_dataSet = ds

   ' Set the current row to -1.
   m_currentRow = - 1
End Sub 'CreateDataSet
// Private members of the DataReader class
private System.Data.DataSet m_dataSet;
private int m_currentRow;

// Method to create a dataset
internal void CreateDataSet()
{
   // Create a dataset.
   System.Data.DataSet ds = new System.Data.DataSet("myDataSet");
   // Create a data table. 
   System.Data.DataTable dt = new System.Data.DataTable("myTable");
   // Create a data column and set various properties. 
   System.Data.DataColumn dc = new System.Data.DataColumn(); 
   dc.DataType = System.Type.GetType("System.Decimal"); 
   dc.AllowDBNull = false; 
   dc.Caption = "Number"; 
   dc.ColumnName = "Number"; 
   dc.DefaultValue = 25; 
   // Add the column to the table. 
   dt.Columns.Add(dc); 
   // Add 10 rows and set values. 
   System.Data.DataRow dr; 
   for(int i = 0; i < 10; i++)
   { 
      dr = dt.NewRow(); 
      dr["Number"] = i + 1; 
      // Be sure to add the new row to the DataRowCollection. 
      dt.Rows.Add(dr);
   }

   // Fill the dataset.
   ds.Tables.Add(dt);

   // Use a private variable to store the dataset in your
   // DataReader.
   m_dataSet = ds;

   // Set the current row to -1.
   m_currentRow = -1;
}
public bool Read()
{
   m_currentRow++;
   if (m_currentRow >= m_dataSet.Tables[0].Rows.Count) 
   {
      return (false);
   } 
   else 
   {
      return (true);
   }
}

public int FieldCount
{
   // Return the count of the number of columns, which in
   // this case is the size of the column metadata
   // array.
   get { return m_dataSet.Tables[0].Columns.Count; }
}

public string GetName(int i)
{
   return m_dataSet.Tables[0].Columns[i].ColumnName;
}

public Type GetFieldType(int i)
{
   // Return the actual Type class for the data type.
   return m_dataSet.Tables[0].Columns[i].DataType;
}

public Object GetValue(int i)
{
   return m_dataSet.Tables[0].Rows[m_currentRow][i];
}

public int GetOrdinal(string name)
{
   // Look for the ordinal of the column with the same name and return it.
   // Returns -1 if not found.
   return m_dataSet.Tables[0].Columns[name].Ordinal;
}

Utworzyć lub pobrać z zestawu danych, można użyć DataSet obiektu w implementacjach programu odczytu, elementu GetValue, GetName, GetOrdinal, GetFieldType, i FieldCount członków elementu DataReader klasy.