Repository.ConnectToOracleRepository: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) No edit summary |
Kate Racaza (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
<onlyinclude>Connects to an Oracle repository | <onlyinclude>Connects to an Oracle repository. Returns a '''Boolean''' value; when true, indicates a successful connection to the repository.</onlyinclude> | ||
== Syntax == | == Syntax == | ||
Line 9: | Line 9: | ||
===Parameters=== | ===Parameters=== | ||
''Port'' | ''Port'' | ||
:Integer. The server port for the Oracle repository. | :Required. Integer. The server port for the Oracle repository. | ||
''Service'' | ''Service'' | ||
:String. The repository service identifier. | :Required. String. The repository service identifier. | ||
''Host'' | ''Host'' | ||
:String. The repository host identifier. | :Required. String. The repository host identifier. | ||
''Schema'' | ''Schema'' | ||
:String. The repository schema. | :Required. String. The repository schema. | ||
''Password'' | ''Password'' | ||
:String. The repository password or the Windows login password used for access to the database. | :Required. String. The repository password or the Windows login password used for access to the database. | ||
Revision as of 15:33, 25 August 2015
Member of: SynthesisAPI9.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")