Oracle prepared statement uses a new prepared statement each time it is called, but it does use the bind arguments.
Allow use of bind arguments for PostgreSQL using the pg driver.
Run execute_select on the database with the given SQL and the stored bind arguments.
# File lib/sequel/adapters/oracle.rb, line 329 329: def execute(sql, opts={}, &block) 330: super(prepared_sql, {:arguments=>bind_arguments}.merge(opts), &block) 331: end
Execute the given SQL with the stored bind arguments.
# File lib/sequel/adapters/postgres.rb, line 637 637: def execute(sql, opts={}, &block) 638: super(sql, {:arguments=>bind_arguments}.merge(opts), &block) 639: end
Same as execute, explicit due to intricacies of alias and super.
# File lib/sequel/adapters/oracle.rb, line 334 334: def execute_dui(sql, opts={}, &block) 335: super(prepared_sql, {:arguments=>bind_arguments}.merge(opts), &block) 336: end
Same as execute, explicit due to intricacies of alias and super.
# File lib/sequel/adapters/postgres.rb, line 642 642: def execute_dui(sql, opts={}, &block) 643: super(sql, {:arguments=>bind_arguments}.merge(opts), &block) 644: end
Same as execute, explicit due to intricacies of alias and super.
# File lib/sequel/adapters/oracle.rb, line 339 339: def execute_insert(sql, opts={}, &block) 340: super(prepared_sql, {:arguments=>bind_arguments}.merge(opts), &block) 341: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.