Repository.DataWarehouse.SaveRawDataSet: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
| John Leavitt (talk | contribs) No edit summary | John Leavitt (talk | contribs) No edit summary | ||
| Line 2: | Line 2: | ||
| Adds a raw data set | Adds a raw data set | ||
| == Method Syntax== | == Method Syntax== | ||
| {{APIName|'''SaveRawDataSet'''(}} | {{APIName|Public Function '''SaveRawDataSet'''(}} | ||
| {{APIPrefix|ByVal}} | {{APIPrefix|ByVal}} | ||
| {{APIName|DataSet}} | {{APIName|DataSet}} | ||
Revision as of 17:27, 18 October 2013
 
Adds a raw data set
Method Syntax
 Public Function SaveRawDataSet( 
ByVal
 DataSet 
 As RawDataSet) 
As Boolean
 Saves the raw data set in the repository. 
Parameters
DataSet The raw data object.
Usage Example
' Declare a new repository connection class. Private WithEvents MyRepository As New Repository ' Connect to the Synthesis repository. Dim Success As Boolean = False Success = MyRepository.ConnectToRepository("RepositoryFileNamePath") ' Declare and populate a RawData object and a RawDataSet. In this example, the first Incident information is used. Dim RD As New RawData ' (Populate relevant RawData variables in RD.) Dim RDSet As New RawDataSet RDSet.AddDataRow(RD) ' Save the raw data to the Synthesis repository. Dim SuccessSaveRawData As Boolean SuccessSaveRawData = MyRepository.SaveRawDataSet(RDSet)
Reformatted Usage Example
Declare a new repository connection class.
Private WithEvents MyRepository As New Repository
Connect to the Synthesis repository.
       Dim Success As Boolean = False
       Success = MyRepository.ConnectToRepository("RepositoryFileNamePath")
Declare and populate a RawData object and a RawDataSet. In this example, the first Incident information is used.
Dim RD As New RawData ( Populate relevant RawData variables in RD. ) Dim RDSet As New RawDataSet RDSet.AddDataRow(RD)
Save the raw data to the Synthesis repository.
       Dim SuccessSaveRawData As Boolean
       SuccessSaveRawData = MyRepository.SaveRawDataSet(RDSet)
