Module | Sequel::MySQL::PreparedStatements::DatasetMethods |
In: |
lib/sequel/adapters/shared/mysql_prepared_statements.rb
|
MySQL is different in that it supports prepared statements but not bound variables outside of prepared statements. The default implementation breaks the use of subselects in prepared statements, so extend the temporary prepared statement that this creates with a module that fixes it.
# File lib/sequel/adapters/shared/mysql_prepared_statements.rb, line 121 121: def call(type, bind_arguments={}, *values, &block) 122: ps = to_prepared_statement(type, values) 123: ps.extend(CallableStatementMethods) 124: ps.call(bind_arguments, &block) 125: end
Store the given type of prepared statement in the associated database with the given name.
# File lib/sequel/adapters/shared/mysql_prepared_statements.rb, line 129 129: def prepare(type, name=nil, *values) 130: ps = to_prepared_statement(type, values) 131: ps.extend(PreparedStatementMethods) 132: if name 133: ps.prepared_statement_name = name 134: db.prepared_statements[name] = ps 135: end 136: ps 137: end