Class: ROM::SQL::Commands::Delete

Inherits:
Commands::Delete
  • Object
show all
Defined in:
lib/rom/sql/commands/delete.rb

Overview

SQL delete command

Instance Method Summary collapse

Instance Method Details

#executeArray<Hash>

Deletes tuples from a relation

Returns:

  • (Array<Hash>)

    deleted tuples



21
22
23
24
25
# File 'lib/rom/sql/commands/delete.rb', line 21

def execute
  deleted = relation.to_a
  relation.delete
  deleted
end