Repository.ConnectToOracleRepository
Jump to navigation
Jump to search
Member of: SynthesisAPI.Repository
Connects to an Oracle repository. Returns a Boolean value; when true, indicates a successful connection to the repository.
Syntax
.ConnectToOracleRepository(Port, Service, Host, Schema, Password)
Parameters
Port
- Required. Integer. The server port for the Oracle repository.
Service
- Required. String. The repository service identifier.
Host
- Required. String. The repository host identifier.
Schema
- Required. String. The repository schema.
Password
- Required. String. The repository password or the Windows login password used for access to the database.
Example
VBA|VB.NET Dim MyRepository As New Repository MyRepository.ConnectToOracleRepository("OraclePort", "OracleService","OracleHost", "OracleSchema", "OraclePassword")