Oracle prepared statement uses a new prepared statement each time it is called, but it does use the bind arguments.
Run execute_select on the database with the given SQL and the stored bind arguments.
# File lib/sequel/adapters/oracle.rb, line 359 def execute(sql, opts=OPTS, &block) super(prepared_sql, {:arguments=>bind_arguments}.merge(opts), &block) end
Same as execute, explicit due to intricacies of alias and super.
# File lib/sequel/adapters/oracle.rb, line 364 def execute_dui(sql, opts=OPTS, &block) super(prepared_sql, {:arguments=>bind_arguments}.merge(opts), &block) end
Same as execute, explicit due to intricacies of alias and super.
# File lib/sequel/adapters/oracle.rb, line 369 def execute_insert(sql, opts=OPTS, &block) super(prepared_sql, {:arguments=>bind_arguments}.merge(opts), &block) end