Repository.ConnectToOracleRepository: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(19 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Template:APIClass|Repository Class|Repository}}
{{Template:API}}{{Template:APIBreadcrumb|.[[Repository Class|Repository]]}}


== Property Syntax==


{{APIPrefix|Public Function}}
<onlyinclude>Connects to an Oracle repository. Returns a '''Boolean''' value; when true, indicates a successful connection to the repository.</onlyinclude>
{{APIName|ConnectToOracleRepository(}}
{{APIPrefix|ByVal}}
{{APIName|Port}}
{{APIPrefix|As Integer}}
{{APIName|,}}
{{APIPrefix|ByVal}}
{{APIName|Service}}
{{APIPrefix|As String}}
{{APIName|,}}
{{APIPrefix|ByVal}}
{{APIName|Host}}
{{APIPrefix|As String}}
{{APIName|,}}
{{APIPrefix|ByVal}}
{{APIName|Schema}}
{{APIPrefix|As String}}
{{APIName|,}}
{{APIPrefix|ByVal}}
{{APIName|Password}}
{{APIPrefix|As String}}
{{APIName|)}}
{{APIPrefix|As Boolean}}<br>
{{APIComment|Connects to an Oracle repository.}}


== Parameters ==
== Syntax ==
'''Port'''
'''.ConnectToOracleRepository'''(''Port'', ''Service'', ''Host'', ''Schema'', ''Password'')
The server port for the Oracle Repository.


'''Service'''
===Parameters===
The Oracle Database name for the Synthesis Repository to connect.
''Port''
:Required. Integer. The server port for the Oracle repository.


'''Host'''
''Service''
The Oracle Host name.
:Required. String. The repository service identifier.


'''Schema'''
''Host''
The Oracle Schema.
:Required. String. The repository host identifier.


'''Password'''
''Schema''
The Password for the database.
:Required. String. The repository schema.


== Usage Example ==
''Password''
:Required. String. The repository password or the Windows login password used for access to the database.


{{APIComment|Declare a new repository connection class.}}
        Private WithEvents MyRepository As New Repository


{{APIComment|Connect to the Synthesis repository.}}
==Example==
        Dim Success As Boolean = False
 
        Success = MyRepository.ConnectToOracleRepository("OraclePort", "OracleService", "OracleHost", "OracleSchema", "OraclePassword")
'''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

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