Class: Google::Apis::SpannerV1::ResultSet
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SpannerV1::ResultSet
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/spanner_v1/classes.rb,
generated/google/apis/spanner_v1/representations.rb,
generated/google/apis/spanner_v1/representations.rb 
Overview
Results from Read or ExecuteSql.
Instance Attribute Summary collapse
- 
  
    
      #metadata  ⇒ Google::Apis::SpannerV1::ResultSetMetadata 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Metadata about a ResultSet or PartialResultSet.
 - 
  
    
      #rows  ⇒ Array<Array<Object>> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Each element in
rowsis a row whose format is defined by metadata.row_type. - 
  
    
      #stats  ⇒ Google::Apis::SpannerV1::ResultSetStats 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Additional statistics about a ResultSet or PartialResultSet.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ResultSet 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ResultSet.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ResultSet
Returns a new instance of ResultSet
      2172 2173 2174  | 
    
      # File 'generated/google/apis/spanner_v1/classes.rb', line 2172 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#metadata ⇒ Google::Apis::SpannerV1::ResultSetMetadata
Metadata about a ResultSet or PartialResultSet.
Corresponds to the JSON property metadata
      2155 2156 2157  | 
    
      # File 'generated/google/apis/spanner_v1/classes.rb', line 2155 def @metadata end  | 
  
#rows ⇒ Array<Array<Object>>
Each element in rows is a row whose format is defined by
metadata.row_type. The ith element
in each row matches the ith field in
metadata.row_type. Elements are
encoded based on type as described
here.
Corresponds to the JSON property rows
      2165 2166 2167  | 
    
      # File 'generated/google/apis/spanner_v1/classes.rb', line 2165 def rows @rows end  | 
  
#stats ⇒ Google::Apis::SpannerV1::ResultSetStats
Additional statistics about a ResultSet or PartialResultSet.
Corresponds to the JSON property stats
      2170 2171 2172  | 
    
      # File 'generated/google/apis/spanner_v1/classes.rb', line 2170 def stats @stats end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2177 2178 2179 2180 2181  | 
    
      # File 'generated/google/apis/spanner_v1/classes.rb', line 2177 def update!(**args) @metadata = args[:metadata] if args.key?(:metadata) @rows = args[:rows] if args.key?(:rows) @stats = args[:stats] if args.key?(:stats) end  |