Included Modules

Class Index [+]

Quicksearch

Sequel::Dataset::BindArgumentMethods

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.

Private Instance Methods

execute(sql, opts={}, &block) click to toggle source

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(sql, opts={}, &block) click to toggle source

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
execute_dui(sql, opts={}, &block) click to toggle source

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
execute_dui(sql, opts={}, &block) click to toggle source

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
execute_insert(sql, opts={}, &block) click to toggle source

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.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.