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

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

Overview

The result of a SQL statement.

<important> <p>This data type is deprecated.</p> </important>

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)


918
919
920
921
922
923
# File 'lib/aws-sdk-rdsdataservice/types.rb', line 918

class SqlStatementResult < Struct.new(
  :number_of_records_updated,
  :result_frame)
  SENSITIVE = []
  include Aws::Structure
end

#result_frameTypes::ResultFrame

The result set of the SQL statement.

Returns:



918
919
920
921
922
923
# File 'lib/aws-sdk-rdsdataservice/types.rb', line 918

class SqlStatementResult < Struct.new(
  :number_of_records_updated,
  :result_frame)
  SENSITIVE = []
  include Aws::Structure
end