Methods for MySQL prepared statements using the native driver.
Raise a more obvious error if you attempt to call a unnamed prepared statement.
[Source]
# File lib/sequel/adapters/shared/mysql_prepared_statements.rb, line 109 109: def call(*) 110: raise Error, "Cannot call prepared statement without a name" if prepared_statement_name.nil? 111: super 112: end
[Validate]