0
votes
0answers
9 views

Need help nstalling Ruby gem mysql2

I am attempting to set up my rails environment on OS X 10.7.5. I have all installed all programs (Ruby, Rails, GEM, Bundler, rvm, Xcode) except the ruby gem mysql2. I saw this advice in another post ...
0
votes
1answer
32 views

rails application craches when does request to mysql db

Before this problem appeared I run my application on ruby 1.8.7 with 'mysql' gem ver '2.8.1' without problems. And I use RVM to manage ruby environments. After I switched to ruby 1.9.3 the bundle ...
0
votes
0answers
50 views

Can't launch server on rails (LoadError)

I can't launch server on rails. I uninstalled and re-installed both mysql and mysql gem. But still I get the same error This is what i get ...
2
votes
2answers
29 views

ERROR: Error installing mysql: ERROR: Failed to build gem native extension

i follow the "http://blog.mmediasys.com/2011/07/07/installing-mysql-on-windows-7-x64-and-using-ruby-with-it/" for setting the connection between Ruby on rails app and mysql server 5.1... So when i ...
1
vote
3answers
52 views

How to mention different action in form on two submit tags?

I have my form tag and also i have two buttons in my form. How do i call different actions in my form on click of submit buttons. Here is my code: <%= form_for :attachment_metadata, ...
1
vote
1answer
411 views

Mysql 2.9.1 error with ruby 2.0

OS Ubuntu 12.04. I`ve cloned rails4.0.0beta1 from https://github.com/rails/rails.git. I have ruby 2.0.0p0 (2013-02-24 revision 39474), when I am trying to do "bundle install" i have the following ...
0
votes
0answers
170 views

Failed to install mysql2 gem on RHEL 5.8 through bundler

Here is my stack: RHEL 5.8 x86_64 MySQL 5.5 x86_64 Ruby 1.9.3p345 Rails 3.2.8 I am installing mysql2 0.3.11 gem through bundler and got the error, and the problem seems not to be the same with the ...
2
votes
2answers
55 views

While connecting to mysql showing socket error

I have mysql server installed and it contains data also. I was trying to connect to mysql from ruby code. For that purpose I installed mysql gem using gem install mysql. The connection part in my ...
0
votes
0answers
54 views

Ruby connecting to MySQL

I want to use open source code to get Stack Overflow data into my MySQL database: if ARGV.size != 5 puts "Usage load.rb Usage load.rb <XML file path> <db host> <db user> <db ...
0
votes
1answer
193 views

Sphinx cannot be found on your system.

I am using my rails application in ubuntu12.04. I just installed thinkingsphinx and sphinx using these commands. sudo apt-get install sphinxsearch sudo gem install thinking-sphinx But ...
1
vote
0answers
72 views

Alphabetical ordering of database columns in a large rails application

When working on a large and complex rails app I find it difficult to locate and work with specific columns in the database admin tools as the columns (there are well over 100 of them on some models) ...
1
vote
2answers
277 views

rails server error,mysql

I'm new at programming on RoR. I ran into an error while trying to launch webrick webserver, on simple RoR project, while typing the following code in the prompt command line: "rails server" i got ...
1
vote
0answers
111 views

Rails/MySQL: lazy symbol binding failed?

I am a .NET developer by day and an aspiring Rails developer at night. I am trying to use Rails and MySQL as my DB. I have successfully installed both. However, I am running into a really strange ...
0
votes
1answer
248 views

mysql2 Gem error on rails

I want to continue programming a rail app but the following error occurs when I try to start the server rails s. My rail installation seems to work fine when I have a brand new directory (it uses ...
0
votes
2answers
60 views

Need array of self, children and children childrens in rails

I have a table like following well,here in this table every user has a parent user,then if we select a user then its id ,children ids and children childrens ids should return as array.I need a ...
1
vote
1answer
457 views

Can't get mysql2 gem to install. Install can't find mysql.h

I am trying to install mysql2: sudo gem install mysql2 -v '0.2.7' -- --with-mysql-config=/usr/local/Cellar/mysql/5.5.25a/bin/mysql_config I'm getting this error: ERROR: Error installing mysql2: ...
4
votes
2answers
473 views

Dependencies for chef_gem

I am currently updating the community MySQL cookbook so that it can be used to install Percona, which is a drop in replacement for stock MySQL but has some added functionality to easily enable HA and ...
0
votes
1answer
49 views

Leading apostaphe is not displayed while dumping the excel sheet in to mysql database in rails 3 application

I am using a script to dump the data in to mysql database in rails 3 application. I have a cell data in excel sheet as 'abc while dumping it in to database it only shows as abc I am doing this on ...
0
votes
1answer
221 views

Running Ruby on Rails + Phusion passenger with Nginx+mysql in 32 bit or 64 bit Linux OS server and its performance?

I have a Java background, and am new to Ruby on Rails, and have a lot of confusion choosing 32-bit or 64-bit Linux OS for my server. This is what I know, please correct me if I am wrong: A 32-bit OS ...
1
vote
1answer
647 views

bundle install: Failed to build gem native extension

i have git clone git://github.com/jalagrange/excel_test_app.git I got the below error while the bundle install, This does not happen with other my applications. following error Installing mysql2 ...
0
votes
1answer
77 views

Net::SSH::Service::Forward::UNIXServer

I'm trying to use the Net::SSH:Gateway gem but without any luck. I'm executing this: gateway = Net::SSH::Gateway.new( ssh_host, user, :port => ssh_port, :keys => keys, :passphrase => ...
0
votes
1answer
597 views

gem install mysql checking for mysql.h… no

I'm getting this error on Arch Linux, although mysql.h exists in the system. Does anyone have any idea how to solve this? Here are some vitals: $ find /usr -name mysql.h /usr/include/mysql/mysql.h $ ...
1
vote
2answers
1k views

Getting error 'mysql.h is missing' while bundle install ROR

I am using Centos 5.8, mysql5.5, ruby 1.9.1, rails 3.0.9 and mysql2 -v 0.2.7 gem. While doing 'bundle install', I get this error: Installing mysql2 (0.2.7) with native extensions ...
1
vote
1answer
363 views

Where does Ruby's have_header method look for header files?

On a CentOS 5.7 box, I'm having trouble installing the newest version of the mysql2 gem; it's not finding errmsg.h: /usr/bin/ruby extconf.rb checking for rb_thread_blocking_region()... yes checking ...
0
votes
0answers
71 views

How to update the carrierwave

I am having a problem on how I can edit the carrierwave image. Cause rightnow I have a element model has_one :image, dependent => :destroy and image model belongs_to :element, ...
7
votes
2answers
953 views

How do you create prepared statements with the mysql2 gem?

I've tried using google to answer this seemingly simple question, but to my surprise, it didn't help. I have code in my rails application currently using the 'prepare' method with the mysql gem. On ...
1
vote
2answers
411 views

mysql gem 2.7: impossible to install

I'm trying to install the mysql gem v. 2.7 on MacOsX Snow Leopard. I know a lot has been written about this, and I've read most of it. If I do the following: sudo env ARCHFLAGS="-arch x86_64" gem ...
0
votes
2answers
160 views

Adding numbers in several arrays together with ruby

I am using the ruby mysql2 gem to work with a database. I want to list all the countries per region in one table, then add up the hits per region. Normally I would use the mysql SUM function, but the ...
7
votes
1answer
3k views

undefined method `explain' for #<ActiveRecord::ConnectionAdapters::MysqlAdapter

I'm new to Ruby on Rails, but I have followed some tutorials and know my way around a little bit. I have generated some scaffolding and inserted data into a MySql database. When navigating to ...
1
vote
1answer
389 views

Installing MySQL Gem with Rails 3 (Lion 10.7)

I'm getting this error when I try to install the MySQL gem with Rails 3 on OSX 10.7 Lion. My Ruby version is ruby 1.9.2p290. I have already installed MySQL and its working perfectly. Building native ...
3
votes
2answers
2k views

This version of mysql2 (0.2.18) isn't compatible with Rails 3.1

Any help would be greatly appreciated, when I run the "generate model" command I get the following message: WARNING: This version of mysql2 (0.2.18) isn't compatible with Rails 3.1 as the ...
1
vote
2answers
104 views

Whats wrong with my has_and_belongs_to_many relationships?

FIXED BY: changing model names to match rails naming conventions I'm getting the following error when I try to join a skill to a user: irb(main):006:0> user.skills << skill NameError: ...
0
votes
2answers
490 views

Rails cannot generate model using mysql

Windows XP with installed MYSQL as a development machine, ruby 1.9.2p290 (2011-07-09) [i386-mingw32], Rails 3.1.0 gem install mysql2 -- '--with-mysql-lib="c:\Program Files\MySQL\MySQL S erver 5.5\lib" ...
0
votes
1answer
247 views

Use Mysql2 for Ruby

I try to run rails S and get the following error. /Users/ME/.rvm/gems/ruby-1.9.2-p290/gems/mysql2-0.3.8/lib/mysql2.rb:9:in `require': ...
0
votes
2answers
788 views

How do I install mysql gem using bundler? (OS X Lion)

So, I currently have to do this to install the mysql gem: export ARCHFLAGS="-arch x86_64" ; sudo gem install --no-rdoc --no-ri mysql -v 2.7 -- --with-mysql-dir=/usr/local ...
1
vote
1answer
80 views

parsing mail messages to DB in ruby

I have a simple cron job sending me questions and i'd like to be able to reply to them and do something with the answers... things like "what have you eaten recently?" or "what's your mood?". they all ...
0
votes
1answer
265 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
2answers
691 views

Sequel gem & MySQL (Ruby + Windows): load mysql.so file, not mysql.rb

Using ruby gem 'sequel', when I attempt Sequel.connect("mysql://localhost"), I get the following error: Sequel::AdapterNotFound: LoadError: require 'mysql' did not define Mysql::CLIENT_MULTI_RESULTS! ...
3
votes
2answers
889 views

mysql gem vs mysql2 gem and 'each_hash' method

Previously I have used mysql RubyGem in my app. Now I have switched to mysql2 RubyGem and I'm having problems with Result class. Code example: db_values = ActiveRecord::Base.connection.execute(sql) ...
1
vote
2answers
773 views

Installing ruby mysql gem with percona server

New install of cent os 5.4; clean install of percona xtradb server (Server version: 5.1.56-rel12.7 Percona Server (GPL), 12.7, Revision 224) gem install mysql failed with the output ...
0
votes
2answers
730 views

MySQL gem installation problem

I'm bit confused having error with MySQL gem installation. I have uninstalled mysql gem because of MySQL update from 5.0.xx to 5.1.39 and now I can't install it properly. I have downloaded ...
2
votes
1answer
698 views

mysql error help… while running rake db:setup RAILS_ENV=“production”

I am diligently trying to get mysql up and running for my first rails app ever. I keep getting the following error when running rake db:setup RAILS_ENV="production": rake aborted! ...
2
votes
1answer
951 views

Mysql2 Error on Rails Migration

On rake db:migrate I get the error: Mysql2::Error: Can't read dir of './site_development/' (errno: 13): SHOW TABLES Current versions of installed shenanigans: From MySQL install bundle: ...
10
votes
6answers
10k views

Cannot install mysql2 gem

I'm unable to install the mysql2 gem in my Windows7 x64 system. I tried using both the 32-bit and 64-bit versions of MySQL server but none got me any further. I installed Ruby 1.8, the development ...
0
votes
2answers
1k views

Can't install mysql2 for rails 3 on Windows

Can't install mysql2 without an error message. I've tried every way I can think of including using devkit. gem install mysql2 -- --with-mysql-include=c:/xampp/mysql/inclu de ...
1
vote
4answers
8k views

gem install mysql fail

I've followed the instructions on http://geryit.com/blog/2011/01/installing-mysql-with-rails-on-mac-os-x-snow-leopard/ , including the installation of ruby via macport. Whenever I execute gem install ...
0
votes
1answer
74 views

Ruby mysql2 extensions built against wrong files location

I have a directory /tmp/buld_source, where I built MySQL 5.5 using cmake with the correct install prefix Then I manually copied libmysql to the correct (I hope) location under the prefix specified. ...
1
vote
1answer
717 views

rails3 mysql2 GEM does not seem to do TCP, only socket

What I am surmising is that mysql2 does not default to a TCP connection protocol when I remove the socket parameter. Do you guys agree? Any GEM suggestions? I can connect via the mysql command line. ...
0
votes
2answers
1k views

Using active record and mysql on ruby script

I've been trying to use mysql and active record on a ruby script but I'm getting the following message: Outdated mysql gem. Upgrade to 2.8.1 or later. In your Gemfile: gem 'mysql', '2.8.1'. Or use ...
28
votes
2answers
8k views

What the difference between mysql and mysql2 gem

I use to work with mysql gem, but often nowadays I hear about mysql2 gem. Also it is included into Gemfile by default in Rails 3.0.x. What is the difference and advantages of using mysql2 gem?

1 2 3