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 395 def execute(sql, opts=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 400 def execute_dui(sql, opts=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 405 def execute_insert(sql, opts=OPTS, &block) super(prepared_statement_name, {:arguments=>bind_arguments}.merge(opts), &block) end