Repository.DataWarehouse.SaveRawDataSet: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
{{Template:APIClass|Repository Class|Repository}}
{{Template:APIClass|Repository Class|Repository}}


== Declaration  ==
== Method Syntax==
 
{{APIPrefix|Public Function}}
{{APIName|SaveRawDataSet(}}
{{APIName|SaveRawDataSet(}}
{{APIPrefix|ByVal}}
{{APIPrefix|ByVal}}
{{APIName|DataSet}}
{{APIName|DataSet}}
{{APIName|RawDataSet)}}
{{APIName|As [[RawDataSet Class|RawDataSet]])}}
{{APIPrefix|As As Boolean}}
{{APIPrefix|As Boolean}}


{{APIComment|Saves the raw data set in the repository.}}
{{APIComment|Saves the raw data set in the repository.}}
== Parameters ==
'''DataSet'''
{{APIComment|The raw data object.}}
== Usage Example ==
{{APIComment|Declare a new repository connection class.}}
        Private WithEvents MyRepository As New Repository
{{APIComment|Connect to the Synthesis repository.}}
        Dim Success As Boolean = False
        Success = MyRepository.ConnectToRepository("RepositoryFileNamePath")
{{APIComment|Save the raw data to the Synthesis repository.}}
        Dim SuccessSaveRawData As Boolean
        SuccessSaveRawData = MyRepository.SaveRawDataSet(

Revision as of 22:07, 19 September 2013



Method Syntax

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")

Save the raw data to the Synthesis repository.

       Dim SuccessSaveRawData As Boolean
       SuccessSaveRawData = MyRepository.SaveRawDataSet(