Execute the stored prepared statement name and the stored bind arguments instead of the SQL given.
# File lib/sequel/adapters/oracle.rb, line 382 def execute(sql, opts={}, &block) super(prepared_statement_name, opts, &block) end
Same as execute, explicit due to intricacies of alias and super.
# File lib/sequel/adapters/oracle.rb, line 387 def execute_dui(sql, opts={}, &block) super(prepared_statement_name, opts, &block) end
Same as execute, explicit due to intricacies of alias and super.
# File lib/sequel/adapters/oracle.rb, line 392 def execute_insert(sql, opts={}, &block) super(prepared_statement_name, opts, &block) end