Show / Hide Table of Contents

Class ExecuteSqlResponseItemScript

A statement execution response for script type requests.

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

Properties

Binds

Declaration
[JsonProperty(PropertyName = "binds")]
public List<ExecuteSqlBind> Binds { get; set; }
Property Value
Type Description
List<ExecuteSqlBind>

Array of objects specifying the bind information.

DbmsOutput

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

Output from DBMS_OUTPUT package. Server output must be enabled (e.g., SET SERVEROUTPUT ON).

Error

Declaration
[JsonProperty(PropertyName = "error")]
public ExecuteSqlResponseItemError Error { get; set; }
Property Value
Type Description
ExecuteSqlResponseItemError

Properties

Declaration
[JsonProperty(PropertyName = "properties")]
public ExecuteSqlResponseItemProperties Properties { get; set; }
Property Value
Type Description
ExecuteSqlResponseItemProperties

Responses

Declaration
[JsonProperty(PropertyName = "responses")]
public List<string> Responses { get; set; }
Property Value
Type Description
List<string>

Responses generated when executing the statements.

ResultSet

Declaration
[JsonProperty(PropertyName = "resultSet")]
public ExecuteSqlResponseItemResultSet ResultSet { get; set; }
Property Value
Type Description
ExecuteSqlResponseItemResultSet

ResultSetObject

Declaration
[JsonProperty(PropertyName = "resultSetObject")]
public ExecuteSqlOutputDispositionDetails ResultSetObject { get; set; }
Property Value
Type Description
ExecuteSqlOutputDispositionDetails

Results

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

Results generated when executing the statements.

StatementId

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

The sequence number of the statement. Sequence number of the first statement is 1.

StatementPos

Declaration
[JsonProperty(PropertyName = "statementPos")]
public ExecuteSqlResponseItemStatementPos StatementPos { get; set; }
Property Value
Type Description
ExecuteSqlResponseItemStatementPos

StatementText

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

Text of statements executed.

StatementType

Declaration
[JsonProperty(PropertyName = "statementType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public StatementType? StatementType { get; set; }
Property Value
Type Description
StatementType?

The Statement type.

In this article
Back to top