moved a rails app of mine onto a new server and had to install a few gem dependencies. However, after installing the mysql gem I get the error, uninitialized constant MysqlCompat::MysqlRes, whenever I try to run a rake command that involves the mysql database. It seems I only get this error when I require the mms2r gem. Has anyone ever heard of this? I'm running mysql 2.8.1 gem.
feedback
|
|
on my Mac OS X 10.6 I did this to install the 2.8.1 gem, which worked perfectly with my MacPorts mysql5-server:
| |||||||||||
feedback
|
|
My problem was due to my "mysql" being a 32-bit installation while ruby was 64 and 32-bit. Check with these commands
Both should match Mach-O 64-bit executable x86_64 or Mach-O 64-bit executable i386. I installed a 64-bit mysql, then
and voila! | |||
feedback
|
|
Basically the problem is the the dynamic library libmysqlclient can't be found. The above solutions will work, but you need to reapply them any time you rebuild the gem, or when you install a new version of MySQL. An alternative approach is to add the MySQL directory containing the library to your dynamic load path. Putting the following in my .bashrc file solved the problem:
| |||
|
feedback
|
|
Yes, I saw a similar error message, looking for the same nonexistent class MysqlCompat::MysqlRes As it turns out, that class should not exist; the error message is caused by a problem with the latest Mysql driver. mysql-2.8.1 looked for my libraries in a directory named with an extra level of 'mysql' at the end. For instance, my libraries (under MacOS X 10.5.8), are in /usr/local/mysql/lib, but the mysql.bundle library looks for the MySQL libraries at /usr/local/mysql/lib/mysql ... which is wrong. I found it easy enough to fix, by creating a symbolic link in the /usr/local/mysql/lib named 'mysql', which points to '.' So when the libraries are referenced at that extra depth, they are found, and work. This is definitely a hack; I'm sure there are more appropriate ways to fix this. I just need it to work so I can get on with other things. Moreover, this may not work for you. It is likely to work if your error looks like:
Since this seems to be a recent development and I hadn't seen any direct response to it, I thought I'd share how I fixed it. Good luck :) | |||
|
feedback
|
|
If you have mysql 5.5 follow this: http://geryit.com/blog/2011/01/installing-mysql-with-rails-on-mac-os-x-snow-leopard/ FTR: If I didn't need some stupid rep to upvote I would have upvoted the identitcal answer, consider this my upvote. | |||
|
feedback
|
|
gem install -v=2.7.1 will fix it as well. | |||
|
feedback
|
|
Setting the proper ARCHFLAGS upon gem (re-)installation helped me.. without any symlinking required: http://joergbattermann.tumblr.com/post/181479575/fixing-the-nameerror-uninitialized-constant | |||||
feedback
|
|
With mysql gem (2.8.1) I was getting
Using -v 2.7 make it work perfectly and for those who used Homebrew to install mysql
Note that you can change mysql version if needed. | |||
|
feedback
|
|
sudo gem install mysql -v 2.7 should do the trick... | |||
|
feedback
|
|
sudo gem install mysql -v 2.7 -- --with-mysql-config=/usr/local/mysql/bin/mysql_config also did the trick for me when migrating over to my new Snow Leopard laptop. I did not use MacPorts to install mysql, but rather the binary, and had no luck with the arch flag solutions or symlinks. | |||
|
feedback
|
|
This problem appeared with me, after upgrading Ubuntu from 9.10 to 10.04. It appears to be a problem with the mysql gem. Symptoms: Any use of ActiveRecord that requires a connection to mysql yields a stack trace coming from "uninitialized constant MysqlCompat::MysqlRes" I tried a "gem update mysql" and found that I couldn't build native extensions because the compiler can't find the mysql_client library. That library (libmysqlclient.so.16) sits in /usr/lib. Fix for ubuntu 10.04: As root, I did these:
I notice that several different people are trying things here and I wonder if we're not locating the root cause. Variables that people need to clarify in their answers:
| ||||
|
feedback
|
|
I tried everything else here, but still got the problem. Downgrading from MySQL 5.5 to 5.1 fixed it for me. (Mac OS X 10.6.5) | |||
|
feedback
|
|
I've tried all of the above and none of them work for me either. When trying to install mysql version 2.7, I get the error:
My original error:
ake aborted!
uninitialized constant MysqlCompat::MysqlRes /vendor/rails/activesupport/lib/active_support/dependencies.rb:440:in | |||||
feedback
|
|
I had the same problem after upgrading from Fedora 10 to Fedora 12. I fixed it by just uninstalling mysql gem and installing it again. So it complies with the new version of MySQL. | |||
|
feedback
|
|
sudo gem install mysql -v 2.7 -- --with-mysql-config=/usr/local/mysql/bin/mysql_config Worked perfectly for me :) | |||
|
feedback
|
|
On Mac OS X 10.6.4, I had to specify the architecture and config directory:
| |||
|
feedback
|
|
finally, worked for me too on centos. ldconfig seems to be the trick after reinstalling the older gem. cheers! | |||
|
feedback
|
|
If your Mysql version is 5.5 you should uninstall it. I just left an article about using mysql with ruby : http://geryit.com/blog/2011/01/installing-mysql-with-rails-on-mac-os-x-snow-leopard/ | |||
|
feedback
|
|
This is what worked for me. I read a ton of posts and found that using the system ruby install was causing an incompatibility issue:
| |||
|
feedback
|
|
Downgrade (from 5.9) to mysql 5.1 helped on 10.6 ... running both mysql and mysql2 gems. | |||
|
feedback
|
|
The mysql and mysql2 gems both work on ruby 1.9.2 just update ruby and install the gem you need. | |||
|
feedback
|
This worked for me. | ||||
|
feedback
|
Dmg package from the mysql site an ddone! | ||||
|
feedback
|
also worked for me when arch flag and symlinks didnt! THANKS!! | ||||
|
feedback
|
|
How is the mysql dependency related to mms2r? I'm the mms2r author, btw. The mms2r gemspec https://github.com/monde/mms2r/blob/master/mms2r.gemspec does not list a mysql dependency. | |||
|
feedback
|