Upgraded mysql from 5.0 to 5.1, now Rails 2.3 is broken (on Mac) - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T21:48:03Zhttp://stackoverflow.com/feeds/question/938181http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/938181/upgraded-mysql-from-5-0-to-5-1-now-rails-2-3-is-broken-on-mac0Upgraded mysql from 5.0 to 5.1, now Rails 2.3 is broken (on Mac)walker2009-06-02T06:34:21Z2009-06-04T04:58:43Z
<p>I upgraded mysql on my Mac from 5.0.x to 5.1.x (using a dmg package directly from mysql.com), which broke Rails (2.3.2). Previously everything was working correctly. The error I get is this:</p>
<p><strong>!!! The bundled mysql.rb driver has been removed from Rails 2.2. Please install the mysql gem and try again: gem install mysql.</strong></p>
<p>So I tried re-installing the mysql gem, tried uninstalling and reinstalling, still no luck. (Command used to install: 'sudo gem install mysql -- --with-my-sql-config=*PATH TO mysql_config on my machine*'. The gem installs fine, but it doesn't fix the problem.</p>
<p>Did a lot of digging on the web, and couldn't find a solution that sounded right. There were some suggestions for Windows of copying an older mysql dll, so there may be some Mac analogue, but that just sounds wrong to me.</p>
<p>Anybody else hit this problem?</p>
http://stackoverflow.com/questions/938181/upgraded-mysql-from-5-0-to-5-1-now-rails-2-3-is-broken-on-mac/938235#9382350Answer by John Topley for Upgraded mysql from 5.0 to 5.1, now Rails 2.3 is broken (on Mac)John Topley2009-06-02T06:55:30Z2009-06-02T06:55:30Z<p>Shouldn't you have used <code>sudo gem install mysql</code>?</p>
http://stackoverflow.com/questions/938181/upgraded-mysql-from-5-0-to-5-1-now-rails-2-3-is-broken-on-mac/938468#9384680Answer by srboisvert for Upgraded mysql from 5.0 to 5.1, now Rails 2.3 is broken (on Mac)srboisvert2009-06-02T08:18:44Z2009-06-02T08:18:44Z<p>Read <a href="http://www.napcsweb.com/blog/2007/06/01/mysql-gem-on-osx/" rel="nofollow">this</a>.</p>
http://stackoverflow.com/questions/938181/upgraded-mysql-from-5-0-to-5-1-now-rails-2-3-is-broken-on-mac/948666#9486660Answer by walker for Upgraded mysql from 5.0 to 5.1, now Rails 2.3 is broken (on Mac)walker2009-06-04T04:58:43Z2009-06-04T04:58:43Z<p>I finally sorted out what the problem was that was causing the 'bundled mysql.rb driver has been removed from Rails 2.2' error. If you read this entry in my blog (<a href="http://freevirusesandspyware.com/2009/05/upgrading-ruby-on-mac-os-x-leopard-from.html" rel="nofollow">http://freevirusesandspyware.com/2009/05/upgrading-ruby-on-mac-os-x-leopard-from.html</a>) you'll see my saga of updating ruby from 1.8.6 to 1.8.7 and the issues it caused with my gems. Well, I fixed those for my user account, but not for when I used sudo--they give different lists of installed gems when I do 'gem environment'/'sudo gem environment'. Ran the old gem tool and got the same list with and without sudo. Hmmm. So I tried uninstalling/reinstalling the mysql gem with the old gem tool, and bam! problem solved.</p>