Class/Module Index [+]

Quicksearch

Sequel::MySQL::PreparedStatements::DatasetMethods::CallableStatementMethods

Methods to add to MySQL prepared statement calls without using a real database prepared statement and bound variables.

Public Instance Methods

subselect_sql_append(sql, ds) click to toggle source

Extend given dataset with this module so subselects inside subselects in prepared statements work.

# File lib/sequel/adapters/shared/mysql_prepared_statements.rb, line 94
def subselect_sql_append(sql, ds)
  ps = ds.to_prepared_statement(:select).clone(:append_sql => sql)
  ps.extend(CallableStatementMethods)
  ps = ps.bind(@opts[:bind_vars]) if @opts[:bind_vars]
  ps.prepared_args = prepared_args
  ps.prepared_sql
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.