Class ResultSet (3.3.0)

ResultSet(mapping=None, *, ignore_unknown_fields=False, **kwargs)

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

Attributes

NameDescription
metadata google.cloud.spanner_v1.types.ResultSetMetadata
Metadata about the result set, such as row type information.
rows Sequence[google.protobuf.struct_pb2.ListValue]
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].
stats google.cloud.spanner_v1.types.ResultSetStats
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].