instance method
reset!
Ruby on Rails 3.1.12
Since v3.1.12 Last seen in v4.2.9Signature
reset!()
No documentation comment.
Source
# File activerecord/lib/active_record/connection_adapters/mysql_adapter.rb, line 361
def reset!
if @connection.respond_to?(:change_user)
# See http://bugs.mysql.com/bug.php?id=33540 -- the workaround way to
# reset the connection is to change the user to the same user.
@connection.change_user(@config[:username], @config[:password], @config[:database])
configure_connection
end
end
Defined in activerecord/lib/active_record/connection_adapters/mysql_adapter.rb line 361
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Mysql::Stmt::ActiveRecord::ConnectionAdapters::MysqlAdapter