Changeset 7521
- Timestamp:
- 09/20/07 23:40:48 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb
r7498 r7521 50 50 # Use the bundled Ruby/MySQL driver if no driver is already in place 51 51 begin 52 ActiveRecord::Base.logger.info( 53 "WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. " + 54 "Please install the C-based MySQL library instead (gem install mysql)." 55 ) if ActiveRecord::Base.logger 56 52 57 require 'active_record/vendor/mysql' 53 58 rescue LoadError trunk/railties/configs/databases/mysql.yml
r7116 r7521 4 4 # gem install mysql 5 5 # On MacOS X: 6 # gem install mysql -- --include=/usr/local/lib6 # sudo gem install mysql -- --with-mysql-dir=/usr/local/mysql 7 7 # On Windows: 8 8 # gem install mysql