Repository.ConnectToOracleRepository: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(20 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 ==
'''ServerName'''
'''.ConnectToOracleRepository'''(''Port'', ''Service'', ''Host'', ''Schema'', ''Password'')
The server file path for the SQL Repository.


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


'''UseImpersonation'''
''Service''
The database requires impersonation.
:Required. String. The repository service identifier.


'''ImpersonateDomain'''
''Host''
The domain for the impersonation.
:Required. String. The repository host identifier.


'''ImpersonateUsername'''
''Schema''
The User Name for the impersonation.
:Required. String. The repository schema.


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


== Usage Example ==


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


{{APIComment|Connect to the Synthesis repository.}}
'''VBA|VB.NET'''
        Dim Success As Boolean = False
        Success = MyRepository.ConnectToSQLRepository("SQLServerPath", "SQLDatabaseName")
{{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")