Class ExecuteSqlResponseItemResultSet
Result set generated from the query.
Inherited Members
Namespace: Oci.DatabasetoolsruntimeService.Models
Assembly: OCI.DotNetSDK.Databasetoolsruntime.dll
Syntax
public class ExecuteSqlResponseItemResultSet
Properties
Count
Declaration
[JsonProperty(PropertyName = "count")]
public int? Count { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | The number of rows returned. |
HasMore
Declaration
[JsonProperty(PropertyName = "hasMore")]
public bool? HasMore { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? | Specifies whether the result set has more rows. |
Items
Declaration
[JsonProperty(PropertyName = "items")]
public List<Dictionary<string, object>> Items { get; set; }
Property Value
| Type | Description |
|---|---|
| List<Dictionary<string, object>> | All rows in the result set. |
Limit
Declaration
[JsonProperty(PropertyName = "limit")]
public int? Limit { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | Maximum number of rows returned from the query. |
Metadata
Declaration
[JsonProperty(PropertyName = "metadata")]
public List<ExecuteSqlResponseItemResultSetMetadata> Metadata { get; set; }
Property Value
| Type | Description |
|---|---|
| List<ExecuteSqlResponseItemResultSetMetadata> | Metadata of the column. |
Offset
Declaration
[JsonProperty(PropertyName = "offset")]
public int? Offset { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | The first row returned in the result set. |