Repository.DataWarehouse.SaveRawDataSet: Difference between revisions
Jump to navigation
Jump to search
Albert Szeto (talk | contribs) No edit summary |
Albert Szeto (talk | contribs) No edit summary |
||
Line 19: | Line 19: | ||
{{APIPrefix|Private WithEvents MyRepository As [[New Repository]]}} | {{APIPrefix|Private WithEvents MyRepository As [[New Repository]]}} | ||
'{{APIComment|Connect to the Synthesis repository.}} | '{{APIComment|Connect to the Synthesis repository.}} | ||
{{APIPrefix|Dim}} Success {{APIPrefix|As Boolean}} = {{APIPrefix|False}} | {{APIPrefix|Dim}}Success{{APIPrefix|As Boolean}}={{APIPrefix|False}} | ||
Success = MyRepository.[[Repository.ConnectToRepository|ConnectToRepository]]("RepositoryFileNamePath") | Success = MyRepository.[[Repository.ConnectToRepository|ConnectToRepository]]("RepositoryFileNamePath") | ||
'{{APIComment|Declare and populate a [[RawData Class|RawData]] object and a [[RawDataSet Class|RawDataSet]]. In this example, the first Incident information is used.}} | '{{APIComment|Declare and populate a [[RawData Class|RawData]] object and a [[RawDataSet Class|RawDataSet]]. In this example, the first Incident information is used.}} | ||
{{APIPrefix|Dim}} RD {{APIPrefix|As New}} [[RawData Class|RawData]] | {{APIPrefix|Dim}}RD{{APIPrefix|As New}} [[RawData Class|RawData]] | ||
'{{APIComment|(Populate relevant RawData variables in RD.)}} | '{{APIComment|(Populate relevant RawData variables in RD.)}} | ||
{{APIPrefix|Dim}} RDSet {{APIPrefix|As New [[RawDataSet Class|RawDataSet]]}} | {{APIPrefix|Dim}}RDSet{{APIPrefix|As New [[RawDataSet Class|RawDataSet]]}} | ||
RDSet.AddDataRow(RD) | RDSet.AddDataRow(RD) | ||
'{{APIComment|Save the raw data to the Synthesis repository.}} | '{{APIComment|Save the raw data to the Synthesis repository.}} | ||
{{APIPrefix|Dim}} SuccessSaveRawData {{APIPrefix|As Boolean}} | {{APIPrefix|Dim}}SuccessSaveRawData{{APIPrefix|As Boolean}} | ||
SuccessSaveRawData = MyRepository.[[Repository.SaveRawDataSet|SaveRawDataSet]](RDSet) | SuccessSaveRawData = MyRepository.[[Repository.SaveRawDataSet|SaveRawDataSet]](RDSet) | ||
Revision as of 23:53, 29 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
Code Block
' Declare a new repository connection class. Private WithEvents MyRepository As New Repository ' Connect to the Synthesis repository. DimSuccessAs Boolean=False Success = MyRepository.ConnectToRepository("RepositoryFileNamePath") ' Declare and populate a RawData object and a RawDataSet. In this example, the first Incident information is used. DimRDAs New RawData ' (Populate relevant RawData variables in RD.) DimRDSetAs New RawDataSet RDSet.AddDataRow(RD) ' Save the raw data to the Synthesis repository. DimSuccessSaveRawDataAs 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)