Repository.ConnectToAccessRepository: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 10: Line 10:
== Usage Example ==
== Usage Example ==


{{APIComment|Declare a new repository connection class.}}
{{APIComment|'Declare a new repository connection class.}}
        Private WithEvents MyRepository As New Repository
  Dim MyRepository As New Repository
 
 
{{APIComment|Connect to the Synthesis repository.}}
{{APIComment|'Connect to the Synthesis repository.}}
        Dim Success As Boolean = False
  Dim Success As Boolean = False
        Success = MyRepository.ConnectToAccessRepository("AccessRepositoryFilePath")
  Success = MyRepository.ConnectToAccessRepository("AccessRepositoryFilePath")

Revision as of 21:29, 23 May 2014


Connects to an MS Access repository. Returns True if successful, otherwise returns False.

Syntax

  • ConnectToAccessRepository( 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. 
 Dim MyRepository As New Repository
 
 'Connect to the Synthesis repository. 
 Dim Success As Boolean = False
 Success = MyRepository.ConnectToAccessRepository("AccessRepositoryFilePath")