Show / Hide Table of Contents

Class ExecuteSqlBind

Bind information.

Inheritance
object
ExecuteSqlBind
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 ExecuteSqlBind

Properties

DataType

Declaration
[Required(ErrorMessage = "DataType is required.")]
[JsonProperty(PropertyName = "dataType")]
public string DataType { get; set; }
Property Value
Type Description
string

The data type.

Remarks

Required

Index

Declaration
[JsonProperty(PropertyName = "index")]
public int? Index { get; set; }
Property Value
Type Description
int?

Index of the bind. Index of the first bind is 1.

Mode

Declaration
[JsonProperty(PropertyName = "mode")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ExecuteSqlBind.ModeEnum? Mode { get; set; }
Property Value
Type Description
ExecuteSqlBind.ModeEnum?

The mode in which the bind is used.

Name

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

Name of the bind.

PlsqlTableTypeDetails

Declaration
[JsonProperty(PropertyName = "plsqlTableTypeDetails")]
public ExecuteSqlBindPlsqlTable PlsqlTableTypeDetails { get; set; }
Property Value
Type Description
ExecuteSqlBindPlsqlTable

Results

Declaration
[JsonProperty(PropertyName = "results")]
public List<object> Results { get; set; }
Property Value
Type Description
List<object>

results

Values

Declaration
[JsonProperty(PropertyName = "values")]
public List<object> Values { get; set; }
Property Value
Type Description
List<object>

values

In this article
Back to top