Tagged Questions
0
votes
1answer
30 views
mysql gem broken in debian testing?
I've been trying all night, and so far have been unable to compile the mysql gem for ruby on my Debian Testing 64Bit system.
I believe it is because I have the openssl v1.0.0 library installed.
Here ...
0
votes
0answers
79 views
Going crazy trying to make Rails work with MySQL on MAC OS X 10.8.3
While I am new to RoR I feel like I have done everything possible to get this done namely:
Downloaded & Installed MySQL
Updated OSX
Updaded XCode
Installed RVM
Installed Homebrew
Gems seem to be ...
2
votes
2answers
353 views
Ruby Gem LoadError mysql2/mysql2 required
Im trying to setup my rails server on OSX 10.8 but I can't get my rails server to run.
- Currently Im using a Zend Server with mysql 5.1.
- I also have istalled brew and brew mysql.
- And I used: gem ...
0
votes
1answer
22 views
Rvm versus Mysql
Did the fact of adding rvm path to the .profile disable the launch of Mysql from the command line.
I'm asking it because i have install the rmv lately and since then I can't get access to the data ...
0
votes
2answers
51 views
Unable to reconnect to mysql database using gem mysql2
Im using gem mysql2 to connect to a MySQL database in my ruby code. In my Gemfile i have gem 'mysql2', '~> 0.2.11'.But the reconnect method does not work. It says undefined method reconnect for ...
0
votes
1answer
203 views
Unable to connect to MySQL using ruby-mysql gem
I installed the ruby-mysql gem using bundler. But Mysql.connect is crashing with the following trace.
...
0
votes
1answer
481 views
running rails g devise:install generates seg fault in os x 10.8
Im using the latest rvm, latest ruby and when running various things dealing with the database i get random seg faults with both mysql2 and sqlite3.
#Ruby Version
$ ruby -v
ruby 1.9.3p194 (2012-04-20 ...
1
vote
3answers
11k views
Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)
I am trying to run mysql client on my terminal. I have installed the latest mysql gem.
➜ ~ git:(master) ✗ ruby -v
ruby 1.8.7 (2010-01-10 patchlevel 249) [universal-darwin11.0]
➜ ~ ...
0
votes
1answer
220 views
Install mysql version 5.5 through terminal
Where can I find the ~/.rvmrc file. I have to put rvm_archflags="-arch x86_64" there as in the tutorial http://beginrescueend.com/integration/databases/. Also, is there any other way to install mysql ...
4
votes
4answers
5k views
Installing mysql2 gem on Mac os x Lion
The other day I updated to Mac OSX Lion. It broke my rails install as I had to re complie mysql. While I have got that working reinstalling the mysql2 gem has become problematic. I was perviously ...
0
votes
1answer
266 views
using mysql on rails 3.1RC4
I can't get rails 3.1RC4 to work with mysql...?
I just made a new test app and there it also fails?
I did: rails new blog2 -d mysql
then in my gemfile: gem 'mysql2'
in the database.yml file:
...
0
votes
1answer
65 views
Mysql does not download properly because of rvm
I originally configured my computer with rails, ruby and rvm. Afterwards, I downloaded mysql, but when I typed in mysql --version, it tells me that it is not installed. My echo path shows
...
1
vote
1answer
330 views
mysql2, rvm, ruby 1.9.2
I am starting a new RoR project and thought I would use ruby 1.9.2 (up until now I've always used REE 1.8.7).
I am on a mac with Snow Leopard and using rvm.
I did
rvm install 1.9.2
in my Gemfile I ...
0
votes
1answer
67 views
Ruby Controllers calling the Model
I am new to Ruby and I have a question. I am trying to have a controller call a model class which would query a MySQL database.
What is the correct way to set this up? I am trying not to use ...
1
vote
3answers
299 views
How to correctly install MySQL Ruby Gem
I am trying to install the Ruby GEM for MySQL. I am pretty new to Ruby.
I have RVM and Bundler installed. Should I install the gem via Bundler or RVM?
What would be the actual command to do so ...
1
vote
1answer
305 views
mysql and passenger - error “library not loaded”
Like Meltemi posted on this post: Passenger error "library not loaded" i get the same error. but the answer posted does not help!
...
1
vote
3answers
807 views
MySQL gem in OS X Snow Leopard with RVM and REE 1.8.7 never builds correctly
Problem Solved:
The MySQL 2.8.1 Gem does not play well with MySQL 5.5.x
The solution was to uninstall MySQL (using instructions available here). And then install MySQL 5.1.56 using the x86_64 ...
3
votes
2answers
554 views
Need help segmentation fault in ruby 1.9.2
I'm try using mysql2 gem in my rails 3 application. When I using whenever gem and write crontab. I got this problem in cron's log:
...
3
votes
3answers
3k views
Trying to access my ruby project- LoadError pertaining to mysql
I'm trying to access my first ruby project. After navigating to the proper directory and typing:
$ rails server
I get the following error message:
...
0
votes
1answer
488 views
Issue with mysql gem on Ruby 1.9.2 on Mac OS X 10.6.6
I'm a Ruby noob (Roob?), and I'm trying to get my system up and running. I've gotten Ruby installed through rvm (used the Pragmatic instructions). I've also got MySQL installed via the Community ...
1
vote
1answer
814 views
Mysql2 gem installed but can't be required
I'm converting a Rails-2.3 project over to 3.0.3, and I'm running into a vexing issue with the mysql2 gem. It's listed in my Gemfile, I ran bundle install successfully. When I list my local gems, ...
1
vote
2answers
47 views
Why are the date fields in my rails object / model evaluating to nil when I can clearly see that they are not?
I'm using ruby 1.8.6 and rails 1.2.3 (ancient but I'm debugging an old app)
A model called Payperiod has attributes begindate and enddate and after importing the db, the dates are all there ...