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 392 def execute(sql, opts={}, &block) super(prepared_statement_name, {:arguments=>bind_arguments}.merge(opts), &block) end
Execute the prepared statment with arguments instead of the given SQL.
# File lib/sequel/adapters/ibmdb.rb, line 397 def execute_dui(sql, opts={}, &block) super(prepared_statement_name, {:arguments=>bind_arguments}.merge(opts), &block) end
Execute the prepared statement with arguments instead of the given SQL.
# File lib/sequel/adapters/ibmdb.rb, line 402 def execute_insert(sql, opts={}, &block) super(prepared_statement_name, {:arguments=>bind_arguments}.merge(opts), &block) end