Repository.ConnectToOracleRepository: Difference between revisions
Jump to navigation
Jump to search
Albert Szeto (talk | contribs) No edit summary |
Albert Szeto (talk | contribs) No edit summary |
||
Line 29: | Line 29: | ||
== Parameters == | == Parameters == | ||
''' | '''Port''' | ||
The server | The server port for the Oracle Repository. | ||
''' | '''Service''' | ||
The Database name | The Oracle Database name for the Synthesis Repository to connect. | ||
''' | '''Host''' | ||
The | The Oracle Host name. | ||
''' | '''Schema''' | ||
The | The Oracle Schema. | ||
''' | '''Password''' | ||
The Password for the database. | |||
The Password for the | |||
== Usage Example == | == Usage Example == | ||
Line 54: | Line 51: | ||
{{APIComment|Connect to the Synthesis repository.}} | {{APIComment|Connect to the Synthesis repository.}} | ||
Dim Success As Boolean = False | Dim Success As Boolean = False | ||
Success = MyRepository. | Success = MyRepository.ConnectToOracleRepository("OraclePort", "OracleService", "OracleHost", "OracleSchema", "OraclePassword") |
Revision as of 21:35, 17 September 2013
Property Syntax
Public Function
ConnectToOracleRepository(
ByVal
Port
As Integer
,
ByVal
Service
As String
,
ByVal
Host
As String
,
ByVal
Schema
As String
,
ByVal
Password
As String
)
As Boolean
Connects to an Oracle repository.
Parameters
Port The server port for the Oracle Repository.
Service The Oracle Database name for the Synthesis Repository to connect.
Host The Oracle Host name.
Schema The Oracle Schema.
Password The Password for the database.
Usage Example
Declare a new repository connection class.
Private WithEvents MyRepository As New Repository
Connect to the Synthesis repository.
Dim Success As Boolean = False Success = MyRepository.ConnectToOracleRepository("OraclePort", "OracleService", "OracleHost", "OracleSchema", "OraclePassword")