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.
962 963 964 965 966 967 |
# File 'lib/aws-sdk-rdsdataservice/types.rb', line 962 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.
962 963 964 965 966 967 |
# File 'lib/aws-sdk-rdsdataservice/types.rb', line 962 class SqlStatementResult < Struct.new( :result_frame, :number_of_records_updated) SENSITIVE = [] include Aws::Structure end |