Show / Hide Table of Contents

Class ExecuteSqlResponseStandard

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

Inheritance
object
ExecuteSqlResponse
ExecuteSqlResponseStandard
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 ExecuteSqlResponseStandard : ExecuteSqlResponse

Properties

Items

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

The execution result of a statement.

Remarks

Required

In this article
Back to top