Class: Aws::RDSDataService::Types::SqlStatementResult

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb

Overview

The result of a SQL statement.

This data structure is only used with the deprecated ExecuteSql operation. Use the BatchExecuteStatement or ExecuteStatement operation instead.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#number_of_records_updatedInteger

The number of records updated by a SQL statement.

Returns:

  • (Integer)


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_frameTypes::ResultFrame

The result set of the SQL statement.

Returns:



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