Class ExecuteSqlResponseItemScript
A statement execution response for script type requests.
Inheritance
ExecuteSqlResponseItemScript
Assembly: OCI.DotNetSDK.Databasetoolsruntime.dll
public class ExecuteSqlResponseItemScript
Properties
Declaration
[JsonProperty(PropertyName = "binds")]
public List<ExecuteSqlBind> Binds { get; set; }
Property Value
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).
|
Declaration
[JsonProperty(PropertyName = "error")]
public ExecuteSqlResponseItemError Error { get; set; }
Property Value
Declaration
[JsonProperty(PropertyName = "properties")]
public ExecuteSqlResponseItemProperties Properties { get; set; }
Property Value
Declaration
[JsonProperty(PropertyName = "responses")]
public List<string> Responses { get; set; }
Property Value
| Type |
Description |
| List<string> |
Responses generated when executing the statements.
|
Declaration
[JsonProperty(PropertyName = "resultSet")]
public ExecuteSqlResponseItemResultSet ResultSet { get; set; }
Property Value
Declaration
[JsonProperty(PropertyName = "resultSetObject")]
public ExecuteSqlOutputDispositionDetails ResultSetObject { get; set; }
Property Value
Declaration
[JsonProperty(PropertyName = "results")]
public List<int> Results { get; set; }
Property Value
| Type |
Description |
| List<int> |
Results generated when executing the statements.
|
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.
|
Declaration
[JsonProperty(PropertyName = "statementPos")]
public ExecuteSqlResponseItemStatementPos StatementPos { get; set; }
Property Value
StatementText
Declaration
[JsonProperty(PropertyName = "statementText")]
public string StatementText { get; set; }
Property Value
| Type |
Description |
| string |
Text of statements executed.
|
Declaration
[JsonProperty(PropertyName = "statementType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public StatementType? StatementType { get; set; }
Property Value