Methods for DB2 prepared statements using the native driver.
Execute the prepared statement with arguments instead of the given SQL.
# File lib/sequel/adapters/ibmdb.rb, line 377 377: def execute(sql, opts={}, &block) 378: super(prepared_statement_name, {:arguments=>bind_arguments}.merge(opts), &block) 379: end
Execute the prepared statment with arguments instead of the given SQL.
# File lib/sequel/adapters/ibmdb.rb, line 382 382: def execute_dui(sql, opts={}, &block) 383: super(prepared_statement_name, {:arguments=>bind_arguments}.merge(opts), &block) 384: end
Execute the prepared statement with arguments instead of the given SQL.
# File lib/sequel/adapters/ibmdb.rb, line 387 387: def execute_insert(sql, opts={}, &block) 388: super(prepared_statement_name, {:arguments=>bind_arguments}.merge(opts), &block) 389: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.