Method: SQL::Maker::Select#bind

Defined in:
lib/sql/maker/select.rb

#bindObject



80
81
82
83
84
85
86
# File 'lib/sql/maker/select.rb', line 80

def bind
  bind = []
  bind += self.subqueries if self.subqueries
  bind += self.where.bind if self.where
  bind += self.having.bind if self.having
  bind
end