Methods for MySQL prepared statements using the native driver.
Included modules
- Sequel::Dataset::UnnumberedArgumentMapper
Public Instance methods
call
(*)
Raise a more obvious error if you attempt to call a unnamed prepared statement.
[show source]
# File lib/sequel/adapters/shared/mysql_prepared_statements.rb, line 108 def call(*) raise Error, "Cannot call prepared statement without a name" if prepared_statement_name.nil? super end