Exemplo n.º 1
0
 public void Close()
 {
     if (m_dataSource != null)
     {
         m_dataSource.RecordTimeDataRetrieval();
         m_dataSource.Teardown();
         m_dataSource = null;
     }
 }
Exemplo n.º 2
0
 public LiveRecordRowReader(DataSet dataSet, OnDemandProcessingContext odpContext)
 {
     m_dataSource = new RuntimeLiveReaderDataSource(odpContext.ReportDefinition, dataSet, odpContext);
     m_dataSource.Initialize();
 }