Show / Hide Table of Contents

Class ExecuteSqlResponseItemResultSet

Result set generated from the query.

Inheritance
object
ExecuteSqlResponseItemResultSet
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 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.

In this article
Back to top