Module Values_1.OracleParametersSource

The parameters for Oracle.

Sourcetype nonrec t = {
  1. host : Host.t;
    (*

    An Oracle host.

    *)
  2. port : Port.t;
    (*

    The port.

    *)
  3. database : Database.t;
    (*

    The database.

    *)
  4. useServiceName : Values_0.Boolean.t option;
    (*

    A Boolean value that indicates whether the Database uses a service name or an SID. If this value is left blank, the default value is SID. If this value is set to false, the value is SID.

    *)
}
Sourceval context_ : string
Sourceval make : ?useServiceName:??? -> host:Host.t -> port:Port.t -> database:Database.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Integer of Port.t | `String of Host.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t