Method: Sequel::Oracle::Dataset#call

Defined in:
lib/sequel/adapters/oracle.rb

#call(type, bind_vars = {}, *values, &block) ⇒ Object

Execute the given type of statement with the hash of values.



355
356
357
358
359
# File 'lib/sequel/adapters/oracle.rb', line 355

def call(type, bind_vars={}, *values, &block)
  ps = to_prepared_statement(type, values)
  ps.extend(BindArgumentMethods)
  ps.call(bind_vars, &block)
end