Show / Hide Table of Contents

Class SqlOutParamDetails

Position and SQL Type of PL/SQL OUT parameter

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

Properties

OutParamName

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

Name of the Out Parameter

OutParamPosition

Declaration
[Required(ErrorMessage = "OutParamPosition is required.")]
[JsonProperty(PropertyName = "outParamPosition")]
public int? OutParamPosition { get; set; }
Property Value
Type Description
int?

Position of PL/SQL procedure OUT parameter. The value of this property is ignored during update, if "outParamType" is set to NO_OUT_PARAM value.

Remarks

Required

OutParamType

Declaration
[Required(ErrorMessage = "OutParamType is required.")]
[JsonProperty(PropertyName = "outParamType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SqlOutParamTypes? OutParamType { get; set; }
Property Value
Type Description
SqlOutParamTypes?

SQL Type of PL/SQL procedure OUT parameter. During the update, to completely remove the out parameter, use the value NO_OUT_PARAM. In that case, the value of "outParamPosition" will be ignored.

Remarks

Required

In this article
Back to top