Repository.Pool.GetPool: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
Line 19: Line 19:
  {{APIComment|'Get the list of pools in the connected repository.}}
  {{APIComment|'Get the list of pools in the connected repository.}}
   Dim ListOfPools() As [[cPool Class|cPool]]
   Dim ListOfPools() As [[cPool Class|cPool]]
   ListOfPools = MyRepository.GetAllPools()
   ListOfPools = MyRepository.Pool.GetAllPools()
    
    
  {{APIComment|'Get a Pool.}}
  {{APIComment|'Get a Pool.}}
   Dim GetPool() as cPool
   Dim GetPool() as cPool
   GetPool= MyRepository.GetPool(1)
   GetPool= MyRepository.Pool.GetPool(1)

Revision as of 16:39, 22 May 2015


Version 10 Only - Returns pool with the provided ID. Returns nothing if the pool doesn't exist.

Syntax

Parameters

Enter the Pool ID to get desired pool.

Usage Example

 'Declare a new repository connection object. 
 Dim MyRepository As New Repository
 
 'Connect to the Synthesis repository. 
 Dim Success As Boolean = False
 Success = MyRepository.ConnectToRepository("RepositoryFileNamePath")
 
 'Get the list of pools in the connected repository. 
 Dim ListOfPools() As cPool
 ListOfPools = MyRepository.Pool.GetAllPools()
 
 'Get a Pool. 
 Dim GetPool() as cPool
 GetPool= MyRepository.Pool.GetPool(1)