Allow use of bind arguments for PostgreSQL using the pg driver.
Execute the given SQL with the stored bind arguments.
# File lib/sequel/adapters/postgres.rb, line 692 def execute(sql, opts=OPTS, &block) super(sql, {:arguments=>bind_arguments}.merge(opts), &block) end
Same as execute, explicit due to intricacies of alias and super.
# File lib/sequel/adapters/postgres.rb, line 697 def execute_dui(sql, opts=OPTS, &block) super(sql, {:arguments=>bind_arguments}.merge(opts), &block) end