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