Show / Hide Table of Contents

Class DatabaseConnectionStrings

Connection strings to connect to an Oracle Database.

Inheritance
object
DatabaseConnectionStrings
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabaseService.Models
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class DatabaseConnectionStrings

Properties

AllConnectionStrings

Declaration
[JsonProperty(PropertyName = "allConnectionStrings")]
public Dictionary<string, string> AllConnectionStrings { get; set; }
Property Value
Type Description
Dictionary<string, string>

All connection strings to use to connect to the Database.

CdbDefault

Declaration
[JsonProperty(PropertyName = "cdbDefault")]
public string CdbDefault { get; set; }
Property Value
Type Description
string

Host name based CDB Connection String.

CdbIpDefault

Declaration
[JsonProperty(PropertyName = "cdbIpDefault")]
public string CdbIpDefault { get; set; }
Property Value
Type Description
string

IP based CDB Connection String.

In this article
Back to top