Method: Sequel::Database#call

Defined in:
lib/sequel/database.rb

#call(ps_name, hash = {}) ⇒ Object

Call the prepared statement with the given name with the given hash of arguments.



248
249
250
# File 'lib/sequel/database.rb', line 248

def call(ps_name, hash={})
  prepared_statements[ps_name].call(hash)
end