Show / Hide Table of Contents

Class ExecuteSqlOutputResultDispositionTemplate

Template defining how the result of a command should be stored.

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

Properties

ObjectTemplate

Declaration
[Required(ErrorMessage = "ObjectTemplate is required.")]
[JsonProperty(PropertyName = "objectTemplate")]
public ExecuteSqlOutputDispositionDetails ObjectTemplate { get; set; }
Property Value
Type Description
ExecuteSqlOutputDispositionDetails
Remarks

Required

StatementType

Declaration
[Required(ErrorMessage = "StatementType is required.")]
[JsonProperty(PropertyName = "statementType")]
[JsonConverter(typeof(StringEnumConverter))]
public StatementType? StatementType { get; set; }
Property Value
Type Description
StatementType?

Commands matching this statement type will use this result disposition.

Remarks

Required

In this article
Back to top