Execute the stored prepared statement name and the stored bind arguments instead of the SQL given.
# File lib/sequel/adapters/oracle.rb, line 380 def execute(sql, opts=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 385 def execute_dui(sql, opts=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 390 def execute_insert(sql, opts=OPTS, &block) super(prepared_statement_name, opts, &block) end