Methods for MySQL stored procedures using the native driver.
Execute the database stored procedure with the stored arguments.
# File lib/sequel/adapters/shared/mysql_prepared_statements.rb, line 112 112: def execute(sql, opts={}, &block) 113: super(@sproc_name, {:args=>@sproc_args, :sproc=>true}.merge(opts), &block) 114: end
Same as execute, explicit due to intricacies of alias and super.
# File lib/sequel/adapters/shared/mysql_prepared_statements.rb, line 117 117: def execute_dui(sql, opts={}, &block) 118: super(@sproc_name, {:args=>@sproc_args, :sproc=>true}.merge(opts), &block) 119: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.