The mysql2 Ruby library.
0
votes
2answers
28 views
Cannot seem to install
I am trying to install all the dependencies for a rails app I have forked off of github. One of the gems I need is gem install mysql2 -v '0.3.11'. However, I get an error when trying to run this. I ...
1
vote
0answers
23 views
rails on heroku: external mysql attempts connection to amazon when other url specified
Getting the "we're sorry, but something's wrong" error, trying to configure external mysql to work with rails app...already using proximo and app has been whitelisted
$ heroku config: yields
...
0
votes
0answers
29 views
Install on windows 7 - mysql2-adapter - Ruby on Rails
I am a Noob on Ruby on Rails.
I am following the procedure for installing the crm on windows. I have a problem regarding the Configure the application and create a blank database. the command bundle ...
0
votes
4answers
38 views
Please install mysql2 adapter
I'm new of rails, and i have this big problem. I'm running rails 3.2.9 and Ruby 1.9.3, I did a porting of a rails app from linux to windows, but in windows i'm having a lot of problems with mysql2 ...
0
votes
1answer
37 views
Ruby On Rails Mysql Access Denied
Im trying to excute the following command on a new rails project on my Ubuntu Server.
rails g scaffold User email:string username:string
but Im receiving the following error:
...
0
votes
1answer
57 views
heroku rake db:migrate ERROR “gem install activerecord-mysql-adapter”
im using Rails 3.2.6 trying to run
heroku run rake db:migrate
i get the adaptar ERROR
rake aborted!
Please install the mysql adapter: `gem install activerecord-mysql-adapter` (mysql is not part ...
0
votes
1answer
57 views
Issue with Mysql2, RoR, and Windows 8 x64
Okay so I've been having a heck of a time getting my IDE environment setup for Ruby and RoR. Every issue so far I've been able to solve except one so I humbly ask the mighty stackoverflow for ...
0
votes
1answer
30 views
Mysql InnoDB error in Rails 3 when i run rake db:migrate
Mysql2::Error: Unknown table engine 'InnoDB': SHOW FULL FIELDS FROM schema_migrations
This is the error I see when i run rake db:migrate. I am using mysql server 5.1 and rails 3.2.7
Please help me ...
1
vote
0answers
87 views
Use MariaDB instead of MySQL in my Rails project
How can I use MariaDB instead of MySQL in my Rails project?
When I try to install mysql2 gem it returns error,because mysqlclient was not found.
Here some solution, but I didn't found any ...
2
votes
1answer
55 views
Ruby parsing Array (Special Case)
I am executing a query and getting the following data from the database in an array (MySql2 type object):
+-----------+---------------+---------------+------+------+---------------+
| build | ...
0
votes
1answer
37 views
Ruby: Shorthand for associative hash/array from mysql2 result set
So, new to ruby and struggling on this:
images table - 2 columns, filename and md5
using the mysql2 extension
images = Hash.new
results = client.query("SELECT * FROM images").each do |row|
...
0
votes
0answers
31 views
Getting “Completed 500 Internal Server Error in 140ms” everytime
Started GET "/" for 127.0.0.1 at 2013-04-23 14:20:04 +0530
Processing by StartpagesController#index as HTML
Offer Load (0.2ms) SELECT `offers`.* FROM `offers` WHERE (active = 1 and valid_from > ...
0
votes
1answer
73 views
Mysql2 error during upgrade from Ruby 1.9.3 to 2.0.0
I have a command line app we use at work that uses ActiveRecord (not all of rails). We want to upgrade to Ruby 2.0.0 to get the load time performance improvement.
To do so, I...
...
0
votes
2answers
42 views
rake db:create only creating development databse
I'm starting a new rails 3 app and when I run rake db:create it asks for my root mysql password then errors out saying:
Mysql2::Error: Access denied for user 'arcsite_mysql'@'localhost' to database ...
0
votes
2answers
45 views
Converting strings with wrong encoding returned by MySQL
After migration from ruby1.8/mysql gem to ruby1.9/mysql2 I get strings from the legacy db that are reported to be utf8, but look like encoded with latin1 (or, probably have some kind of double ...
1
vote
0answers
24 views
mysql2 MULTI_STATEMENTS and error reporting
I submit multiple database queries using a single call to mysql2 client. The client is configured using Mysql2::Client::MULTI_STATEMENTS flag.
If one of the queries has a syntax error, I want the ...
-1
votes
1answer
78 views
Webrick Rails Server doesn't run correctly
I have spent the last 6 hours fixing issues like modifying the $PATH, installing Gems to finally get everything as it should be.
but after I create the project folder with it's components and trying ...
1
vote
1answer
34 views
Error while creating database in navicat
I am trying to create a mysql database with navicat but when i try to link to it it gives me an error in:
'connect': Unknown database 'hello' (Mysql2::Error)
(see image)
Or when i search for ...
1
vote
1answer
34 views
Mysql2 and Sqlite3 in Rails
I have a rails application which uses two different types of databases : sqlite3 and mysql2.
I did some searching and managed to get this far, my database.yml file looks like this :
development:
...
0
votes
2answers
67 views
Unable to perform rails generate because of 'unknown database' error
This is the error i am getting after doing $ rails generate inside a newly created application using rails new simple_cms -d mysql
...
0
votes
0answers
76 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 ...
1
vote
1answer
137 views
Unable to generate rails controller: mysql2/client.rb:44:in `connect': Access denied for user 'root'@'localhost' (using password: NO) (Mysql2::Error)
I am new to RoR and as much as they warned me about not using OSX to setup my application (because of these kind of problems), here I am. running OS X 10.82 and I have tried everything in an attempt ...
0
votes
0answers
29 views
Error starting rails server after creating new app using mysql [duplicate]
I'm following the Lynda Ruby on Rails 3 Essential Training videos and just created a new rails application preconfigured to use a MySQL database using:
rails new app -d mysql
I then went into the ...
0
votes
2answers
102 views
Ruby SQL Insert using Mysql2 gem
I'm trying to insert into a remote mysql database. I am able to connect correctly and can query 'select' no problem from it. However, I cannot perform inserts into the same table that I can select ...
0
votes
1answer
31 views
Installing mysql2 gem - HAVE_UINT (ushort, uint type redefinition errors)
Yes, this is yet another question about installing the mysql2 gem for use in Ruby on Rails. But it's an error I haven't been able to find listed in another question.
I've got the 64 bit MySQL and ...
1
vote
0answers
99 views
MySQL error using resque with rails table does not exist
Edit: Ok I've posted my code on this repository here https://github.com/willnance/doctor-self-study
Hoping someone can take a look at it. I'm at wits end. I've looked at every single example I can ...
1
vote
1answer
69 views
saving utf8mb4 strings to mysql
I have a JSON string that has utf8mb4 characters. I first parse the JSON, and then encode the result back to JSON. After that I save the resulting JSON to mysql database. (This is a simplified flow of ...
0
votes
2answers
71 views
Splitting an Array in Ruby
I am fetching some data from the database as below in my ruby file:
@main1= $connection.execute("SELECT * FROM builds
WHERE platform_type LIKE 'TOTAL';")
@main2= ...
0
votes
0answers
27 views
Ruby MRI - Threads + MySQL2
Due to concurrency problems with the Mysql2 gem in Ruby MRI (1.8.7) I came up with a (dirty) solution:
Instead of writing to the database directly, I add all MySQL commands to an array. Then I have a ...
3
votes
1answer
49 views
How to get ActiveRecord to use :cast_booleans?
When using Ruby on Rails with the mysql2 adapter, I have several BIT columns that I want to access and write to in my database. However, when ActiveRecord tries to write to the BIT column, mysql ...
0
votes
2answers
52 views
failed require 'mysql2'
I am having trouble requiring the mysql2 gem. On my local copy it works just fine but on the vm where I am trying to run my script the require fails. Here is the info for the VM.
Windows 7 64bit
...
0
votes
0answers
37 views
Error Installing mysql2 gem for Rails 3 on windows
I tried all the methods but still I'm getting this error please some one helpm to resolve this error.
Installed versions:-
Ruby: ruby 2.0.0p0 <2013-02-24> [x64-mingw32]
Gem: 2.0.3
MySQL: Ver ...
0
votes
0answers
23 views
Trouble installing mysql2 -v '0.3.11' on Snow Leopard
I'm trying run a specific version of MySql in a Rails 3 app and can't get past the gem install. Bundle install fails and tells me to make sure that gem install mysql2 -v '0.3.11' succeeds before ...
0
votes
0answers
46 views
Mysql2 gem segmentation fault (Mac)
Hey guys I wanted to try rbenv so I uninstalled RVM and installed rbenv and this started happening, so I reverted back to RVM and the segmentation fault is still happening! I tried deleting the gem ...
0
votes
1answer
34 views
Heroku, data import error with mysql2
I am beginner on Heroku.
I push my exist ruby on rails application into heroku and that was fine.
Next i push my mysql data into heroku with 'push' command as following.
$heroku config:add ...
1
vote
4answers
1k views
Error “…cannot load such file — mysql2/2.0/mysql2 (LoadError)”. On Windows XP with Ruby 2.0.0
The command rails server throws this error.
C:/Ruby200/lib/ruby/gems/2.0.0/gems/mysql2-0.3.11-x86-mingw32/lib/mysql2/mysql2.rb:2:in `require': cannot load
such file -- mysql2/2.0/mysql2 (LoadError)
...
0
votes
1answer
144 views
Upgrading Rails 3 app from Ruby 1.8.7 to 1.9.3 stops respecting latin1 encoding specification in database.yml
I'm upgrading a Rails 3.2.13 application from Ruby 1.8.7-p370 to Ruby 1.9.3-p385. After upgrading, special characters are garbled in text retrieved from the database. For instance "café" appears as ...
0
votes
0answers
36 views
gem bundler error Could not find gem 'myql2 (~> 0.3.11) x86-mingw32' on Window 7 64 bit
I am using ruby 1.9.3 with rails 3.2.12 on Windows 7 64 bit and getting following error and having problem to install mysql2 gem.
gem install mysql2
I am getting following error
You've installed ...
0
votes
1answer
117 views
Heroku installing Amazon RDS : mysql or mysql2?
I'm installed the Amazon RDS Add-on in Heroku, and created OK an instance in Amazon AWS. But I can't run
heroku run rake db:migrate
It's ending with
(...)
** Invoke db:migrate (first_time)
** ...
0
votes
2answers
885 views
ERROR: 'rake/rdoctask' is obsolete and no longer supported
Out of the blue, I started getting the following error message:
(in /Users/me/.rvm/gems/ruby-1.9.3-p125@mysql2/gems/rails-0.9.5)
rake aborted!
ERROR: 'rake/rdoctask' is obsolete and no longer ...
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 ...
1
vote
1answer
96 views
Ubuntu 12.04 broke Mysql
I installed Ubuntu 12.04 and my (production!) Rails app went down hard.
I'm in a hurry trying to fix it while my site is just totally down.
A source file that the application requires, is missing.
...
1
vote
1answer
313 views
“Please install the mysql2 adapter”
I am attempting to follow this Redmine setup tutorial. When I get to the point of starting the server, I type sudo rails server and I get the following error:
Please install the mysql2 adapter: `gem ...
0
votes
1answer
344 views
Error loading mysql2 when trying to run ruby app on localhost
I'm trying to run a ruby app i cloned from github on mylocalhost and get the following error when entering 'rails s' in the command:
...
0
votes
1answer
733 views
Heroku database configuration specifies nonexistent mysql adapter
I can't seem to overcome the above error on heroku. I am running rails 3 with the mysql2 gem locally just fine, but this seems to break when moving to heroku.
First, I am using ClearDB.
Second, when ...
0
votes
1answer
268 views
Insert Multiple Rows using MySQL INSERT VALUES syntax
I am looking for a ruby-specific solution to insert multiple rows using the INSERT..VALUES syntax
Currently I am generating individual insert statements, but this is very inefficient from a database ...
0
votes
2answers
125 views
mysql2 gem install error
im trying to install mysql2 gem after it failed to install on a bundle install.
when i run
$ sudo gem install mysql2 --
--with-mysql-config=/usr/local/mysql/bin/mysql_config
i get the ...
4
votes
2answers
994 views
MySQL2 gem won't install
I have been trying to install Gitlab on my Ubuntu 12.04 server for a long time, and all goes well until I run bundle install.
It says it is unable to install MySQL2 but gives no reason or corrective ...
-1
votes
1answer
93 views
Ruby / MySQL fetching single row but still using .each?
I'm using the MySQL2 Ruby driver - but it seems a bit redundant having to call
result.each{ |r| puts r['name'] }
for a single row of data that is returned. There must be a simpler way to get the ...
0
votes
0answers
60 views
mysql2 gem gets “Commands out of sync; you can't run this command now”
I have a stored proc that does an insert (i.e., does not return a result set), the code looks like this:
sql = "call insert_telemetry"
sql += "('" + dbrec[0] + "','" + dbrec[1] + "','" + dbrec[2] + ...

