0
votes
0answers
11 views

Using DATEDIFF in Select with Squeel

How can I make a select query using MySQL DATEDIFF using Squeel? I'd like the given select("DATEDIFF(end_at, '#{end_at}')") to rely on squeel for cleaner and safer usage.
0
votes
2answers
36 views

mysql.h is missing … (Ruby on Rails, OSX)

I tried several ideas ... none of them worked ... I'm just trying to install mysql2 as a gem. My mysql is working, but every time my system says, that mysql.h is missing ... Has someone an idea? It's ...
0
votes
1answer
30 views

Latest versions of mysql2 and mysql gems requires mysql 6.0. How to use it with 5.x? [duplicate]

I've got a clean install of Ruby+Gems+DevKit+Rails. I've installed both mysql and mysql2. When i'm trying to start a development server i've got an error: ...
0
votes
1answer
31 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
2answers
34 views

Easy way to compare mysql entries in Rails

In my database I have entries like: username score date User1 10 1/1/2013 User2 4 1/1/2013 User3 4 1/1/2013 User4 5 1/1/2013 ... User1 1 10/1/2013 ...
0
votes
0answers
12 views

How to use validates_unique in Sequel validation_helpers plugin

I am actually using Sequel plugin validation_helpers, and i did not have any problem using the validates_presence option. But when i try to use validates_unique it does not do anything. I tried to put ...
-3
votes
0answers
27 views

only last record of form data is getting stored in database using ruby [closed]

I am new to Ruby On Rails.Using Ruby I have created a form which contains the student data of a class.But when I am trying to save the data, only last record is getting stored in database that is only ...
0
votes
1answer
33 views

Stuff not included in RailsReady?

I tried to install RoR on Ubuntu 12.0.4 using RailsReady(https://github.com/joshfng/railsready). Afterwards I restarted my computer and while typing ruby -v works, typing rails -v returns ...
0
votes
1answer
23 views

Ruby/DataMapper: Problems with multiple many-to-many associations

I have implemented models for User-Group relationship, where one User can be a member and owner of one or more Groups and where one Group can have one or more owners and one or more members. Now, the ...
0
votes
1answer
32 views

Rails: Issue with recieving nested forms with has many through join

I seem to be having a problem with receiving products through my join table, it's giving me a strange error as it seems to be receiving no ID for my order. I can only assume that this is because the ...
0
votes
1answer
31 views

Rails: Dynamically adding products to orders

I'm looking to be able to dynamically add form elements to my order page, so that a user can click a button and be given another element to choose a product with. And then how to handle that with ...
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 ...
0
votes
3answers
31 views

Rails: Trouble with has many through relationships

I've been having a bit of difficulty understanding the whole has many through concept and how it works in Rails, I presume it does the leg work for you, as I'm used to building the associations ...
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 ...
1
vote
1answer
20 views

Reconnect everytime to mysql with Grape

I am a ruby beginner and I have a question about how to use mysql with grape. Do I have to call Mysql.new() everytime I want to use my database or is there a better way to do this? I tried to make ...
-1
votes
0answers
38 views

rails: install mysql2 gem with vendor package on os x 10.8 [closed]

I try to install mysql2 gem on OS X 10.8. I already have installed MySQL from mysql.com and I don't want to use homebrew (I'm using the vendor package or macports). When I try: gem install mysql2 ...
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
20 views

Rails mysql query with Single Table Inheritance N+1 issue

I am trying to find all users that signed up during a given period of time to the ActionMovie plan. I am running into an N+1 problem and its taking me a very long time to get the number of new ...
1
vote
1answer
30 views

activerecord ruby row with max value in mysql table

I need to select from MySQL table table1 (it's shown below) all records with different 'foreign_row_id' values and group them by maximum datetime value. For example, from the table below I should ...
-2
votes
1answer
85 views

RoR Beginner - cannot load such file — mysq12/2.0…WIN8, Ruby2.0,Rails3.2.13 [closed]

I just started using Rails. I've been reading up for the past few hours on how to get this all set up and it's killing me that I can't figure it out. I'm running Windows 8, I installed Ruby 2.0, Rails ...
0
votes
1answer
22 views

Error when adding foreign key in ActiveRecord Migration

I have the following db/migrate ruby file. When I tried rake db:migrate, it gave error. class CreateEmployers < ActiveRecord::Migration def self.up create_table :employers, ...
0
votes
1answer
31 views

how to configure active record with mysql

I have this error: 126: No se puede encontrar el módulo especificado. - C:/Ruby193/lib/ruby/gems/ 1.9.1/gems/mysql2-0.3.11-x86-mingw32/lib/mysql2/1.9/mysql2.so (LoadError) mysql2.so it's there... ...
0
votes
2answers
34 views

Rails advanced sql query

I have a model User thats has_many user_entitlements. I want to get all of the users that have a preview attribute and no user entitlements. My code is currently: User.where("preview is not ...
0
votes
2answers
136 views

Error during install of mysql2 gem for ruby 2.0.0 on Windows

I'm trying to install the mysql2 gem for Ruby 2.0.0. I tried following the instructions at http://rorguide.blogspot.hk/2011/03/installing-mysql2-gem-on-ruby-192-and.html, but was not successful. ...
0
votes
2answers
40 views

Login Failing with no route matches error

I'm trying to learn how to write a login system using Rails, but I feel like I'm hacking away at this right now, I followed this guide: ...
0
votes
0answers
62 views

Ruby/Sinatra Data_Mapper issues

I was messing around in Ruby/Sinatra and was attempting to get data_mapper to work with MySQL however whenever I try and run my Sinatra app I get this error. I am new to the world of Ruby so any ...
-1
votes
0answers
61 views

Error after updating rails version Incorrect MySQL client library version

Incorrect MySQL client library version! This gem was compiled for 6.0.0 but the client library is 4.1.7. C:\school>rake db:schema:load --trace rake aborted! Incorrect MySQL client library ...
0
votes
0answers
63 views

Error when connecting in rails server [closed]

After trying to connect to the rails server I get the following error , mysql version is 5.5 and installed mysql using that command rails install mysql, I have the latest Rails version which is 3.2.13 ...
1
vote
0answers
87 views

How to install mysql2 Ruby Gem on Mountain Lion without having MySQL installed

I want to connect to MySQL remotely, so I don't need to install MySQL on my mac. On linux it's possible by installing 2-3 libraries (libmysqlclient-dev etc.), I don't know how to do the same on mac. ...
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
1answer
50 views

Rails rake task with update_attribute results in Mysql2::Error: Unknown column 'NaN' in 'field list'

I'm experiencing an error I can't seem to figure out when trying to update a field in my database. I'm using rails with update_attribute via rake task. What is strange is that the error relates to a ...
0
votes
3answers
55 views

What's the best way to automate running MySQL scripts on several databases on a daily basis? [closed]

What's the best way to automatically query several dozen MySQL databases with a script on a nightly basis? The script usually returns no results, so I'd ideally have it email or notify me if any are ...
1
vote
1answer
137 views

Rails 3.2 + MySQL: Error: Field 'created_at' doesn't have a default value: INSERT INTO

I created a new migration, where is mentioned ... t.timestamps in the created table are added these two columns ... | created_at | datetime | NO (Null) | | NULL (Default) | ...
0
votes
1answer
32 views

Why wont my ruby server load in terminal on os x 10.7

I am currently following an online video from Lynda.com, on Ruby on Rails essentials. I am a beginner in web development an am trying to practice using rails web app framework. So far I have updated ...
-1
votes
0answers
24 views

MySQL Pivot on ruby on rails

How can I write this on Ruby on Rails? SET @sql = NULL; SELECT GROUP_CONCAT(DISTINCT CONCAT('SUM(IF(a_unit = ''', a_unit, ''', a_value, NULL)) AS ', a_unit)) INTO @sql FROM web_activities; SET @sql ...
0
votes
0answers
43 views

Multiple DataMapper DB connection sessions with sinatra

I'm trying to write a SequalPro-esq connection webview that connects to the database of your choice. I have successfully figured out how to do this, however my struggle is that if multiple people ...
0
votes
0answers
32 views

Mysql Stored Procedure in Rake Tasks, Task ends way before Mysql Procedure, why?

Consider the following piece of Ruby code as a rake task, cols = "a" cat = "b" b = "c" con = ActiveRecord::Base.establish_connection(:adapter => "mysql2", ...
0
votes
0answers
101 views

Ruby on Rails Project With Mysql Database

I am a beginner at ror. I am working on ubuntu. I can create a new ror project with default database and there is no problem everything is okey.. but i want to create a project which have mysql ...
0
votes
1answer
56 views

Rails 3.2 multiple databases

using Rails 3.2.13 I have an application with certain communication devices (say 200 - 300) each of which uses its own MySQL database with naming convention like xy000 + device.id (ie. xy000001, ...
-1
votes
3answers
47 views

Can't run rails server within a DB-driven rails project; can't view localhost

I'm able to create a "rails new demoproject" and run "rails s" successfully within the folder, however when I try and create a rails project with a DB "rails new demoproject -d mysql" and run "rails ...
0
votes
2answers
43 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 ...
0
votes
1answer
109 views

Ruby SSH MySQL Sequel (or DataMapper) remote connection with keys using Net::SSH gem

How would I connect to my VPS based MySQL database remotely (from a cloud based app) using the Ruby Net::SSH or Net::SSH::Gateway gems and key, not password, authentication? And then connect to the ...
0
votes
1answer
53 views

Rails 3.2 - Can't connect to local MySQL

When I run the app, I will get this error message: /Users/adam/.rvm/gems/ruby-1.9.3-p385/gems/mysql2-0.3.11/lib/mysql2/client.rb:44:in `connect': Can't connect to local MySQL server through socket ...
1
vote
1answer
72 views

WebBrick server won't start when using MySQL

I'm new to Rails and when I try creating a new application like this: $ rails new app_one -d mysql It installs and everything works as expected. But, if I try to run it on a local server with ...
0
votes
3answers
68 views

Error running WEBrick: Can't Connect to MySQL server

Hey I can't figure out what to do to fix this error message. Just started with ruby with rails and trying to get it all set up so I can learn more but and stuck on trying to get WEBrick to work. ...
0
votes
1answer
56 views

Relational DB racing conditions

I'm working with Ruby On Rails (but it doesn't really matter) with a SQL backend, either MySQL or Postgres. The web application will be multi-process, with a cluster of app-server processes running ...
1
vote
1answer
40 views

Rails exception Mysql::Error: query: not connected: SHOW FULL FIELDS FROM `publications`

I have mysql database with table Publications which have data about publications. And using mysql gem to access this data. My Ruby version 1.9.3. OS: Windows 7 I also have a model for geting this ...
2
votes
2answers
51 views

Get a random, unvoted-on post in Rails

So I have a Rails app with three base models: Entry, User and Vote. I need a helper method that will give me a random post for a user to vote on: def next_entry Entry.where(:receiving_challenge_id ...
0
votes
2answers
57 views

Failed to insert value into tables in Ruby Mysql

I am trying to use Ruby to insert values into MySQL on localhost. The value i want to insert is the result from Twitter search. My program can successfully write the result to a file, so now i want to ...
0
votes
1answer
71 views

Ruby on Rails query to MySQL doesn't always return newly-added information

I've taken over a Red Hat Enterprise Linux 5 system running Ruby (v1.8.5) on Rails (v2.3.5) with Passenger (v2.2.9), Thinking Sphinx (v1.3.14) and MySQL (v5.0.77-log). I know they're all out of date, ...

1 2 3 4 5 22