Google Cloud Spanner v1 API - Class ResultSet (4.1.0)

public sealed class ResultSet : IMessage<ResultSet>, IEquatable<ResultSet>, IDeepCloneable<ResultSet>, IBufferMessage, IMessage

Reference documentation and code samples for the Google Cloud Spanner v1 API class ResultSet.

Results from [Read][google.spanner.v1.Spanner.Read] or [ExecuteSql][google.spanner.v1.Spanner.ExecuteSql].

Inheritance

System.Object > ResultSet

Namespace

Google.Cloud.Spanner.V1

Assembly

Google.Cloud.Spanner.V1.dll

Constructors

ResultSet()

public ResultSet()

ResultSet(ResultSet)

public ResultSet(ResultSet other)
Parameter
NameDescription
otherResultSet

Properties

Metadata

public ResultSetMetadata Metadata { get; set; }

Metadata about the result set, such as row type information.

Property Value
TypeDescription
ResultSetMetadata

Rows

public RepeatedField<ListValue> Rows { get; }

Each element in rows is a row whose format is defined by [metadata.row_type][google.spanner.v1.ResultSetMetadata.row_type]. The ith element in each row matches the ith field in [metadata.row_type][google.spanner.v1.ResultSetMetadata.row_type]. Elements are encoded based on type as described [here][google.spanner.v1.TypeCode].

Property Value
TypeDescription
RepeatedField<ListValue>

Stats

public ResultSetStats Stats { get; set; }

Query plan and execution statistics for the SQL statement that produced this result set. These can be requested by setting [ExecuteSqlRequest.query_mode][google.spanner.v1.ExecuteSqlRequest.query_mode]. DML statements always produce stats containing the number of rows modified, unless executed using the [ExecuteSqlRequest.QueryMode.PLAN][google.spanner.v1.ExecuteSqlRequest.QueryMode.PLAN] [ExecuteSqlRequest.query_mode][google.spanner.v1.ExecuteSqlRequest.query_mode]. Other fields may or may not be populated, based on the [ExecuteSqlRequest.query_mode][google.spanner.v1.ExecuteSqlRequest.query_mode].

Property Value
TypeDescription
ResultSetStats