Repository.ConnectToRepository: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 5: Line 5:


== Property Syntax==
== Property Syntax==
{{APIPrefix|Public Function}}
{{APIName|ConnectToRepository(}}
{{APIName|ConnectToRepository(}}
{{APIPrefix|ByVal}}
{{APIPrefix|ByVal}}

Revision as of 17:26, 18 September 2013


Connects to any (MS Access, MS SQL or Oracle) repository.
If the extension of the file is 'rserp' then it connects to the enterprise database described in the file.
Otherwise MS Access repository is assumed.

Property Syntax

ConnectToRepository( ByVal FileName As String ) As Boolean
Connects to any (MS Access, MS SQL or Oracle) repository. If the extension of the file is 'rserp' then it connects to the enterprise database described in the file. Otherwise MS Access repository is assumed.

Parameters

FileName The file path for the Synthesis Repository to connect.

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