Class: Aws::RDSDataService::Types::SqlStatementResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDSDataService::Types::SqlStatementResult
- Defined in:
- gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb
Overview
The result of a SQL statement.
ExecuteSql
operation. Use the BatchExecuteStatement
or ExecuteStatement
operation instead.
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 'gems/aws-sdk-rdsdataservice/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 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 947 class SqlStatementResult < Struct.new( :result_frame, :number_of_records_updated) SENSITIVE = [] include Aws::Structure end |