Show / Hide Table of Contents

Class ExecuteSqlResponseBatch

Contains the details for the Batch SQL statements to execute on the database connection.

Inheritance
object
ExecuteSqlResponse
ExecuteSqlResponseBatch
Inherited Members
ExecuteSqlResponse.Env
ExecuteSqlResponse.Version
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 ExecuteSqlResponseBatch : ExecuteSqlResponse

Properties

Items

Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<ExecuteSqlResponseItemBatch> Items { get; set; }
Property Value
Type Description
List<ExecuteSqlResponseItemBatch>

The execution result of a statement.

Remarks

Required

In this article
Back to top