diff options
author | Rizwan Reza <rizwanreza@gmail.com> | 2010-03-26 13:09:38 +0430 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2010-03-26 13:25:53 +0100 |
commit | 5176b28852dc6d0654cdf601d590bddbd6e6da1e (patch) | |
tree | 9ca395b9da02ba4dd52576397635c3dc2a25d555 /activerecord | |
parent | 5231e4e8c51333acd62d2e07a0f73cf0e0169fc2 (diff) | |
download | rails-5176b28852dc6d0654cdf601d590bddbd6e6da1e.tar.gz rails-5176b28852dc6d0654cdf601d590bddbd6e6da1e.tar.bz2 rails-5176b28852dc6d0654cdf601d590bddbd6e6da1e.zip |
Better MySQL Error message. [#3775 state:resolved]
Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/mysql_adapter.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb b/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb index 6946701ee5..521bd810d0 100644 --- a/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb @@ -61,7 +61,7 @@ module ActiveRecord begin require_library_or_gem('mysql') rescue LoadError - $stderr.puts '!!! The bundled mysql.rb driver has been removed from Rails 2.2. Please install the mysql gem and try again: gem install mysql.' + $stderr.puts '!!! Please install the mysql gem and try again: gem install mysql.' raise end end |