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)
Extend given dataset with this module so subselects inside subselects in prepared statements work.
[show source]
# 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