Repository.ConnectToRepository: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
m (Protected "Repository.ConnectToRepository" ([edit=sysop] (indefinite) [move=sysop] (indefinite)) [cascading])
No edit summary
Line 1: Line 1:
{{Template:APIClass|Repository Class|Repository}}
{{Template:APIClass|Repository Class|Repository}}
Connects to any (MS Access, MS SQL or Oracle) repository.<br>
{{Template:Repository.ConnectToRepository.Cmt}}
If the extension of the file is 'rserp' then it connects to the enterprise database described in the file.<br>
Otherwise MS Access repository is assumed.


== Method Syntax ==
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.
{{APIName|'''ConnectToRepository'''(}}
{{APIPrefix|ByVal}}
{{APIName|FileName}}
{{APIPrefix|As String}}
{{APIName|)}}
{{APIPrefix|As Boolean}}<br>
{{APIComment|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 ==
== Syntax ==
'''FileName'''
*ConnectToRepository( FileName {{APIPrefix|As String}} ){{APIPrefix|As Boolean}}
The file path for the Synthesis Repository to connect.
 
Parameters
:''FileName'': The file path of the Synthesis Repository you will connect to.


== Usage Example ==
== Usage Example ==

Revision as of 16:43, 27 February 2014


Connects to any local repository (MS Access, MS SQL or Oracle).

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.

Syntax

  • ConnectToRepository( FileName As String )As Boolean

Parameters

FileName: The file path of the Synthesis Repository you will connect to.

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