Repository.ConnectToOracleRepository: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{Template:API}}{{Template:APIBreadcrumb|9|.[[Repository Class|Repository]]}}
{{Template:API}}{{Template:APIBreadcrumb|.[[Repository Class|Repository]]}}




<onlyinclude>Connects to an Oracle repository that you specify. Returns a '''Boolean''' value; when true, indicates a successful connection to the repository.</onlyinclude>  
<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)
:Required. Integer. The server port for the Oracle repository.


''Service''
''Service''
:String. The repository service identifier. (Required)
:Required. String. The repository service identifier.


''Host''
''Host''
:String. The repository host identifier. (Required)
:Required. String. The repository host identifier.


''Schema''
''Schema''
:String. The repository schema. (Required)
:Required. String. The repository schema.


''Password''
''Password''
:String. The repository password or the Windows login password used for access to the database. (Required)
:Required. String. The repository password or the Windows login password used for access to the database.





Latest revision as of 21:54, 13 November 2015

APIWiki.png


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")