Repository.ConnectToOracleRepository: Difference between revisions
Jump to navigation
Jump to search
Albert Szeto (talk | contribs) No edit summary |
Kate Racaza (talk | contribs) mNo edit summary |
||
(20 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
{{Template: | {{Template:API}}{{Template:APIBreadcrumb|.[[Repository Class|Repository]]}} | ||
<onlyinclude>Connects to an Oracle repository. Returns a '''Boolean''' value; when true, indicates a successful connection to the repository.</onlyinclude> | |||
== | == Syntax == | ||
''' | '''.ConnectToOracleRepository'''(''Port'', ''Service'', ''Host'', ''Schema'', ''Password'') | ||
'' | ===Parameters=== | ||
The | ''Port'' | ||
:Required. Integer. The server port for the Oracle repository. | |||
'' | ''Service'' | ||
The | :Required. String. The repository service identifier. | ||
'' | ''Host'' | ||
The | :Required. String. The repository host identifier. | ||
'' | ''Schema'' | ||
The | :Required. String. The repository schema. | ||
'' | ''Password'' | ||
The | :Required. String. The repository password or the Windows login password used for access to the database. | ||
==Example== | |||
{{ | '''VBA|VB.NET''' | ||
{{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository | |||
MyRepository.ConnectToOracleRepository({{APIString|"OraclePort"}}, {{APIString|"OracleService"}},{{APIString|"OracleHost"}}, {{APIString|"OracleSchema"}}, {{APIString|"OraclePassword"}}) |
Latest revision as of 21:54, 13 November 2015
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")