Class: Aws::RDSDataService::Types::SqlStatementResult
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RDSDataService::Types::SqlStatementResult
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-rdsdataservice/types.rb
 
Overview
The result of a SQL statement.
<note markdown=“1”> This data structure is only used with the deprecated ‘ExecuteSql` operation. Use the `BatchExecuteStatement` or `ExecuteStatement` operation instead.
</note>
  Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #number_of_records_updated  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of records updated by a SQL statement.
 - 
  
    
      #result_frame  ⇒ Types::ResultFrame 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The result set of the SQL statement.
 
Instance Attribute Details
#number_of_records_updated ⇒ Integer
The number of records updated by a SQL statement.
      947 948 949 950 951 952  | 
    
      # File 'lib/aws-sdk-rdsdataservice/types.rb', line 947 class SqlStatementResult < Struct.new( :result_frame, :number_of_records_updated) SENSITIVE = [] include Aws::Structure end  | 
  
#result_frame ⇒ Types::ResultFrame
The result set of the SQL statement.
      947 948 949 950 951 952  | 
    
      # File 'lib/aws-sdk-rdsdataservice/types.rb', line 947 class SqlStatementResult < Struct.new( :result_frame, :number_of_records_updated) SENSITIVE = [] include Aws::Structure end  |