Repository.ConnectToAccessRepository: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
 
(25 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Template:APIClass|Repository Class|Repository}}
{{Template:API}}{{Template:APIBreadcrumb|.[[Repository Class|Repository]]}}


== Method Syntax ==
{{APIName|ConnectToAccessRepository(}}
{{APIPrefix|ByVal}}
{{APIName|FileName}}
{{APIPrefix|As String}}
{{APIName|)}}
{{APIPrefix|As Boolean}}<br>
{{APIComment|Connects to an MS Access repository.}}


== Parameters ==
<onlyinclude>Connects to a standard repository (cannot be used to connect to an enterprise repository). Returns a '''Boolean''' value; when true, indicates a successful connection to the repository.</onlyinclude>
'''FileName'''
The file path for the Synthesis Repository to connect.


== Usage Example ==
== Syntax ==
'''.ConnectToAccessRepository'''(''FileName'')


{{APIComment|Declare a new repository connection class.}}
=== Parameters ===
        Private WithEvents MyRepository As New Repository
''FileName''
:Required. String. The complete path to the Synthesis Repository.


{{APIComment|Connect to the Synthesis repository.}}
 
        Dim Success As Boolean = False
== Example ==
        Success = MyRepository.ConnectToAccessRepository("AccessRepositoryFilePath")
This example assumes that a file called "RSRepository1.rsr10" exists in the C: drive. The code ignores the return value.
 
'''VBA|VB.NET'''
{{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository
MyRepository.ConnectToAccessRepository({{APIString|"C:\RSRepository1.rsr10"}})

Latest revision as of 21:54, 13 November 2015

APIWiki.png


Member of: SynthesisAPI.Repository


Connects to a standard repository (cannot be used to connect to an enterprise repository). Returns a Boolean value; when true, indicates a successful connection to the repository.

Syntax

.ConnectToAccessRepository(FileName)

Parameters

FileName

Required. String. The complete path to the Synthesis Repository.


Example

This example assumes that a file called "RSRepository1.rsr10" exists in the C: drive. The code ignores the return value.

VBA|VB.NET

Dim MyRepository As New Repository
MyRepository.ConnectToAccessRepository("C:\RSRepository1.rsr10")