Repository.DataWarehouse.SaveRawDataSet: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(34 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Template:APIClass|Repository Class|Repository}}
{{Template:API}}{{Template:APIBreadcrumb|.[[Repository Class|Repository]]}}
Adds a raw data set
== Method Syntax==
{{APIName|'''SaveRawDataSet'''(}}
{{APIPrefix|ByVal}}
{{APIName|DataSet}}
{{APIName|As [[RawDataSet Class|RawDataSet]])}}
{{APIPrefix|As Boolean}}<br>
{{APIComment|Saves the raw data set in the repository.}}


== Parameters ==
'''DataSet'''
{{APIComment|The raw data object.}}


== Usage Example ==
<onlyinclude>Adds a new Synthesis Data Warehouse (SDW) data collection to the associated Repository object. Returns a '''Boolean''' value; when true, indicates a successful save.</onlyinclude>
'{{APIComment|Declare a new repository connection class.}}
{{APIPrefix|Private WithEvents MyRepository As New Repository}}
'{{APIComment|Connect to the Synthesis repository.}}
{{APIPrefix|Dim}} Success {{APIPrefix|As Boolean}} = {{APIPrefix|False}}
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.}}
{{APIPrefix|Dim}} RD {{APIPrefix|As New}} [[RawData Class|RawData]]
'({{APIComment|Populate relevant RawData variables in RD. }})
{{APIPrefix|Dim}} RDSet {{APIPrefix|As New [[RawDataSet Class|RawDataSet]]}}
RDSet.AddDataRow(RD)


=== Reformatted Usage Example===
== Syntax ==
{{APIComment|Declare a new repository connection class.}}
'''.DataWarehouse.SaveRawDataSet'''(''DataSet'')
        Private WithEvents MyRepository As New Repository


{{APIComment|Connect to the Synthesis repository.}}
=== Parameters ===
        Dim Success As Boolean = False
''DataSet''
        Success = MyRepository.[[Repository.ConnectToRepository|ConnectToRepository]]("RepositoryFileNamePath")
:Required. The [[RawDataSet Class|RawDataSet]] object that represents the Synthesis Data Warehouse (SDW) data collection.


{{APIComment|Declare and populate a [[RawData Class|RawData]] object and a [[RawDataSet Class|RawDataSet]].  In this example, the first Incident information is used.}}
== Example ==
        Dim RD As New [[RawData Class|RawData]]
'''VBA'''
        ({{APIComment|Populate relevant RawData variables in RD. }})
        Dim RDSet As New [[RawDataSet Class|RawDataSet]]
{{APIComment|'Declare a new Repository object and connect to a Synthesis repository.}}
        RDSet.AddDataRow(RD)
  {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository
  MyRepository.ConnectToAccessRepository({{APIString|"C:\RSRepository1.rsr10"}})
{{APIComment|'Add code to create and populate a new data collection.}}
  {{APIPrefix|Dim}} RDSet {{APIPrefix|As New}} RawDataSet
  {{APIComment|...}}
{{APIComment|'Add the data collection to the repository's SDW.}}
  {{APIPrefix|Call}} MyRepository.DataWarehouse.SaveRawDataSet(RDSet)


 
'''VB.NET'''
{{APIComment|Save the raw data to the Synthesis repository.}}
        Dim SuccessSaveRawData As Boolean
{{APIComment|'Declare a new Repository object and connect to a Synthesis repository.}}
        SuccessSaveRawData = MyRepository.SaveRawDataSet(RDSet)
  {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository
  MyRepository.ConnectToAccessRepository({{APIString|"C:\RSRepository1.rsr10"}})
{{APIComment|'Add code to create and populate a new data collection.}}
  {{APIPrefix|Dim}} RDSet {{APIPrefix|As New}} RawDataSet
{{APIComment|...}}
{{APIComment|'Add the data collection to the repository's SDW.}}
  MyRepository.DataWarehouse.SaveRawDataSet(RDSet)

Latest revision as of 19:20, 9 June 2016

APIWiki.png


Member of: SynthesisAPI.Repository


Adds a new Synthesis Data Warehouse (SDW) data collection to the associated Repository object. Returns a Boolean value; when true, indicates a successful save.

Syntax

.DataWarehouse.SaveRawDataSet(DataSet)

Parameters

DataSet

Required. The RawDataSet object that represents the Synthesis Data Warehouse (SDW) data collection.

Example

VBA 

 'Declare a new Repository object and connect to a Synthesis repository. 
  Dim MyRepository As New Repository
  MyRepository.ConnectToAccessRepository("C:\RSRepository1.rsr10")

 'Add code to create and populate a new data collection. 
  Dim RDSet As New RawDataSet
  ... 

 'Add the data collection to the repository's SDW.  
  Call MyRepository.DataWarehouse.SaveRawDataSet(RDSet)
VB.NET 

 'Declare a new Repository object and connect to a Synthesis repository. 
  Dim MyRepository As New Repository
  MyRepository.ConnectToAccessRepository("C:\RSRepository1.rsr10")

 'Add code to create and populate a new data collection. 
  Dim RDSet As New RawDataSet
 ... 

 'Add the data collection to the repository's SDW.  
  MyRepository.DataWarehouse.SaveRawDataSet(RDSet)