Tagged Questions
0
votes
1answer
21 views
two of the same foreign key from the same table into another table?
Is it ok to have two columns in a table that can be a foreign key from the same table?
For example:
i have an 'address' table with columns:
id, street, city_id, state, country (or id, street, ...
0
votes
1answer
31 views
gem install mysql not working. But i'm able to connect to mysql -u root -p
I'm using ubuntu based backtrack OS. I have mysql installed and i'm able to stop, start, connect to mysql.
mysql -u root -p
works fine and able to create database and could be able to see data in ...
1
vote
2answers
35 views
mysql/RoR database design
Is it ok for a table to have two of the same foreign keys as columns?
I.e I have two tables, one is Country, the other is City. In the Country table:
COUNTRY
--------------
id
name
capitalcity ...
0
votes
1answer
32 views
Rails ActiveRecord find User where Products equals 0
I have a model User that has_many Product(s), but some Users don't have any products yet. I want to write a query that gives me all the Users who don't current have any Products i.e. a User where ...
0
votes
0answers
15 views
Getting undefined method `orders' for #<ActiveRecord::ConnectionAdapters::Mysql2IndexDefinition
Using activerecord-mysql2-adapter, I am getting
undefined method `orders' for #<ActiveRecord::ConnectionAdapters::Mysql2IndexDefinition
This is when I run rake db:schema:dump. I am trying to get ...
2
votes
3answers
163 views
Handling two almost identical tables as one model
I'm working on creating some models for the wikimedia databases located on wikimedia labs, and due to technical issues, there are two tables for revisions.
One table revision contains all revisions, ...
0
votes
2answers
59 views
how to insert hash into mysql using ruby
Let's say I have a hash:
{"MemberId"=>"MID-0000001", "MemberName"=>"Bruce", "OrderNumber"=>"ON-000000001"}
How can I insert this hash into orders tables of the db database in mysql?
...
0
votes
0answers
30 views
Saving and retrieving sales data from MySQL [closed]
How can I save sales data in a MySQL database for a particular date range?
For example, between 01-06-2012 and 30-06-2012 I add 120 (4 articles sold each day) after that I add between 10-06-2012 and ...
0
votes
2answers
28 views
get a list of cities from location model and how many locations exist for each city
I have a location model which has a few columns: title, address, city, state, etc...
I am trying to show a list of all the cities based on the locations in my database. Then, I am trying to figure ...
0
votes
3answers
24 views
Able to add myself as friend in rails console
I have built a user and friend relationship model but the problem is that with those associations I can friend myself. I have successfully suppressed it in my views and controller, but logically it ...
0
votes
1answer
26 views
How to group by day and year in Active Record in Rails3
I'm trying to recreate the following mysql query in rails 3
select count(id), year(created_at), month(created_at) from table where published_state = 'published' group by year(created_at), ...
1
vote
1answer
70 views
how to use Tire for getting data from Elasticsearch index and without hitting database
I am using Tire for implementing Elasticsearch. My environment is Linux,Rails 3.2 with Ruby 1.9.3.
I am able to index using Elasticsearch with the help of gem Tire(0.5.8).
But now to improve ...
0
votes
2answers
29 views
How to use user defined variable of ruby in mysql?
I'm working on Rails 3.2.9 app with ruby 1.9.3 and mysql 5.5. I'm required to write a query where in i'm supposed to use a user defined variable in the where clause in my controller file. Here's the ...
0
votes
0answers
13 views
rails insert run mysql specific commands
I have a rails app where I need to run AES_ENCRYPT on a particular field, when I create a new row. Is it possible to do something like self.field = "AES_ENCRYPT(#{self.field}, #{key})"?
Also, I need ...
0
votes
1answer
33 views
If I Fork a process in ruby, do I need to reconnect to Mysql DB?
I'm using the following environment.
Rails 3.1
Unicorn
Mysql
I have to fork a process wich generate invoces. People told me to use
ActiveRecord::Base.connection.reconnect!
Because with some ...
0
votes
2answers
46 views
Rails query interface where clause issue?
i am try to run the sql query as follows
@applicants = Applicant.where("applicants.first_name LIKE ? AND applicants.status = ?", "%#{people}%", ["new", "in-review"] )
I am getting an mysql error ...
0
votes
1answer
45 views
nonexistent mysql adapter during bundle exec rake asset:precompile
I'm trying to precompile my assets on the production server using bundle exec rake asset:precompile. When is run the rake, I get the error below. What is causing this?
[x]$ bundle exec rake ...
0
votes
1answer
33 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
1answer
28 views
Ruby on rails app won't run because of error with mysql
I created a new Rails application using the command from the Ubuntu terminal:
rails new testing -d mysql
I then added the root password in the database.yml file
when I run the command rails server ...
0
votes
0answers
19 views
Get per month records count using group by in Rails
I want to get the total number of records for each month from the beginning of the year for particular model.
For example User model with fields
id user_name created_on
1 aaa 2013-03-11
...
0
votes
1answer
25 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 ...
0
votes
2answers
84 views
Rails - Sqlite vs Mysql syntax error [closed]
I have the following query that is working good on Sqlite3 (dev env) but fails (SyntaxError) on MySQL (prod env). I have tried different resolution but I can't find where is the problem:
data = ...
0
votes
1answer
47 views
How to trim database column in SQL comparison for rails 3.2.12?
Please look at the following example:
UserAccess.where("action = ? AND resource = ? ", 'index', 'logs')
The issue we are facing is that there are white space in column action and resource in ...
0
votes
0answers
16 views
Active Record ruby on rails 3.1.2 build query to handle old and new data
I have a policies table and model in my rails app, it has_many :policy_attributes
In my policiy_attributes table I have the following schema:
id #int
policy_id #int
policy_type_attribute_id #int
...
0
votes
2answers
38 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 ...
1
vote
1answer
36 views
How can I find the database I created for my Rails application locally and load it to a server?
I am using Lynda.com Rails tutorial. I created a MySQL database for my Ruby on Rails application simple_cms.
The database is called simple_cms_development.
Let's say I want to move this database ...
0
votes
1answer
37 views
Does putting a limit to the size of a string attribute in Rails make the database smaller?
If I am using mySQL or Postgresql does putting a limit on the attribute shrink the size of the database? I guess this may be a silly question, but I am a little unfamiliar with how database size adds ...
4
votes
2answers
54 views
Fetch records where all associated records have attribute
Here are my classes:
class Product < ActiveRecord::Base
has_and_belongs_to_many :categories
end
class Category < ActiveRecord::Base
has_and_belongs_to_many :products
end
Category has a ...
0
votes
1answer
33 views
Customize deals app's homepage and emails thanks to user history: how to do it the right way on Rails/postgreSQL?
Am rather new to this site, looking forward to getting more involved :) I am building a daily deal app to better learn Ruby on Rails.
I’d like to customize
1. The order of the deals on the ...
0
votes
0answers
37 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
2answers
115 views
Using MySQL database on two EC2 instances not working on one instance
I'm trying to setup two Rails applications. I want both of them to use one MySQL database. My setup is like this:
With Elastic Beanstalk I've setup two Rails applications with two diffrent ...
0
votes
3answers
93 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. ...
1
vote
1answer
41 views
Why Rails generate BINARY in SQL query when create new record
I have models Item and Location.
This is my migration file of Item model:
class CreateItems < ActiveRecord::Migration
def change
create_table :items do |t|
t.string :item_cd
...
0
votes
0answers
21 views
Chat group app, rails3
I'm developing a group chat app, but i need to verify when the user create a group that does't previosly exists checkinng the members by example:
if i create a group and invites ones person that ...
1
vote
1answer
24 views
convert SQL result into Hash
For following sql query
SELECT user.name, post.title FROM
user INNER JOIN post ON post.user_id = user.id
I got something like below
name title
foo a
foo b
foo c
bar a
bar d
What i ...
0
votes
0answers
58 views
MySQL , MS SQLServer date conversion issue
I have two databases in my rails app, a conventional MySQL database, and a legacy MS SQLServer database.
The legacy database dictates a '%m/%d/%Y %I:%M%p' format when setting a datetime field.
In ...
0
votes
1answer
21 views
Creating a multi-level association rails
I'm trying to develop a job board style web app.
In my current model:
entrepreneur has_many :opportunities
opportunity belongs_to :entrepreneur
So basically the opportunities model is the table ...
2
votes
1answer
74 views
Rails 3 - suddenly pending migrations error
I suddenly met a strange error. When i try to run rake spec i recieve:
You have 2 pending migrations:
20130405105004 CreateReports
20130405113839 AddDocumentToReports
I don't know the reason ...
0
votes
2answers
156 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 ...
1
vote
0answers
132 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 ...
0
votes
1answer
47 views
Can't access model attributes using has many through rails query
I have a has many through association that I have included below. I can retrieve the record, but cannot access any of the attributes by a direct call. Below are the results of
...
-1
votes
1answer
56 views
Optimizing a rails mysql query [closed]
if I have a table Transactions, and each transaction has a variety of attributes but 2 of which are of concern for my query. The 2 attributes are the user_id and the category_id.
What would be the ...
0
votes
1answer
74 views
When i dump data in my MySQL tables in my Ruby on rails application, why it displays special characters?
In my ruby on rails application,
When i dump data in to my data base from file like (CSV, txt, XLS) it display special character like D�e�m�o in my production database. But in my file the data is ...
1
vote
3answers
55 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, ...
0
votes
0answers
128 views
ruby 1.9.3 db:migrate issues
So I am trying to migrate a database I created and I keep getting this string of errors. Not sure what to do! Thanks
Camerons-MacBook-Air:depot Cameron$ rake db:migrate
rake aborted!
...
0
votes
0answers
66 views
Can my Ruby on Rails app ad-hoc connect to multiple databases (based on record)
I have a Rails app that does some basic user/account management features. But, each user in the system also has their own MySQL database that is used for other purposes outside the app. This database ...
0
votes
0answers
29 views
Timestamp Issue while storing any comment, System stores server time
In my rails project, I have to store some comments with respect to some specific note. Right now client have its own windows based production machine, where application is deployed.
Now I am testing ...
0
votes
1answer
50 views
Graph / RDBMS hybrid?
What are your thoughts on using both Neo4j and a traditional RDBMS such as mysql?
I was wondering if keeping relationships/connections etc in Neo and messages/e-mails and security in mysql was a ...
3
votes
1answer
80 views
Wrong TimeZone Conversion in Ruby on Rails
I'm really stucked on this one.
Basically I want to Import a Excel-File. So I ended up using the CSV import from Rails.
CSV.open('[path-to-file]', 'r').each do |row|
Actually the Import is working ...
0
votes
1answer
166 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)
** ...






