Repository.ConnectToAccessRepository

From ReliaWiki
Revision as of 17:54, 27 February 2014 by Chris Kahn (talk | contribs)
Jump to navigation Jump to search


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.

       Private WithEvents MyRepository As New Repository

Connect to the Synthesis repository.

       Dim Success As Boolean = False
       Success = MyRepository.ConnectToAccessRepository("AccessRepositoryFilePath")