Displaying 20 results from an estimated 3000 matches similar to: "Deleting join association of has_many :through"
2006 Jul 07
4
Help installing Ferret
http://wiki.rubyonrails.com/rails/pages/HowToIntegrateFerretWithRails
I followed everything here but at the last I get when loading page
get_results
Can only handle a String or a Query.
RAILS_ROOT: script/../config/..
Application Trace | Framework Trace | Full Trace
#{RAILS_ROOT}/app/models/result.rb:27:in `search_each''
#{RAILS_ROOT}/app/models/result.rb:27:in `search_index''
2006 Jul 21
15
RoRED a free Ruby on Rails editor for Windows
Hi.
On http://www.plasmacode.com you can download RoRED, a free IDE for Ruby
on Rails apps, only for Windows.
It has some interesting features like tab-grouping of related MVC files,
code navigation into methods (ctrl+click), and more.
Best regards,
Marcus.
http://www.plasmacode.com
--
Posted via http://www.ruby-forum.com/.
2006 Jun 09
12
Securing database from your provider?
Hi.
If i had a RoR application dealing with very reserved personal
informations about my customers, if my hosting provider would like to, i
guess it would be easy for him to steal the data by simply peeking the
username and password inside the database.yml file.
Is there a way to hide the database password from indiscrete eyes ?
Thanks,
Marcus Ob.
--
Posted via http://www.ruby-forum.com/.
2008 Feb 28
2
change drop down list to radio buttons
In my RoR app I would like to change a drop down list, which dispays a
list of colors selected from the database. Instead I would like to
create a radio button for each color. The user is allowed to check one
color and this will be saved back into the database as the color for
this user.
I don''t know how to do this. Currently it looks like this:
<%= select(:user, :color_id,
2006 May 22
6
existing magic to prevent db redundancy?
suppose users have a favorite colour, linked to with a color_id field.
suppose also they have a pet rock, which is one of many possible
colors...
is there a ''best practice'' in order to avoid having ''blue'' appear in the
Color table 100 times. can validates_uniqueness_of be twisted into
handling this case? should i be adding something to the initialize()
2006 Aug 02
9
RJS not cross browser compatible?
I have an RJS template that does the following
page.insert_html :bottom, "some_id", ''<tr id="some_id"><td></td></tr>''
This works just find in safari and firefox. In IE and Opera it doesn''t
work so great. Any ideas? Am I doing something wrong here?
--
Posted via http://www.ruby-forum.com/.
2006 May 14
4
searching on foreing keys
Hey all,
I''m using a simple search function. It''s working
great except for foreign keys.
I have one table pets (id,name,owner_id)
and another table people(id,name)
owner_id being a foreign key of pet pointing to people name.
here it is on the pet controller:
@paginator, @pets= paginate(:pets, :conditions =>["name OR owner_id
like
2006 Mar 22
3
Parent-Child Tables Help
can someone help me with this
i have a table
cars
(
id int
model_id int
make_id int
color_id int
description text
constraint fk_cars_carmake foreign key(make_id) references
carmakes(id),
constraint fk_cars_carmodel foreign key(model_id) references
carmodels(id),
constraint fk_cars_color foreign key(color_id) references colors(id)
)
carmakes
(
id int
carmake varchar
)
carmodels
(
id
2012 Apr 03
4
one master table to hold symbols: good or bad idea?
(This is may be more of a db design question than a rails question.)
Summary:
I''m thinking of creating a single AR class to hold constant symbol
values and use it for :has_many_through relations whenever I need a
constant symbol. Is this a good idea or a bad idea?
Details:
I notice that I have a lot of models that contain just a name string:
create_table
2008 Dec 19
3
Delete All action
Hi,
What is the best way to delete all members of a model?
For example I have a tasks model and want to put a link in that will
delete all tasks at once. Something like,
@tasks = Task.all
@tasks.each { |task| task.destroy }
Do I need another action for this, and what should the link to it be?
cheers,
DAZ
--~--~---------~--~----~------------~-------~--~----~
You received this message because
2005 May 19
5
[OT] Sqlite2 question
So, under Sqlite2, if I want to update a database''s schema, I have to
dump the DB, modify the table''s structure, then go and modify EVERY
insert statement.
The insert statements look like (from memory):
INSERT INTO my_table VALUES (''some_id'', ''some_val'', '''', '''', '''',
''some_other
2006 Jan 25
11
Executing Ruby code that is inside a string
I would like to put Ruby code inside a string, between <%= %> tags, and
have the code inside the tags executed when the string is displayed. Is
this possible?
--
Posted via http://www.ruby-forum.com/.
2006 Jul 23
8
destroy vs delete
what is the difference between destroy and delete in AR
I am not sure what they mean by
"Destroys the record with the given id by instantiating the object and
calling destroy<http://api.rubyonrails.com/classes/ActiveRecord/Base.html#M000866>(all
the callbacks are the triggered). If an array of ids is provided, all
of them are destroyed."
in
2010 Oct 14
2
Nested form, perhaps?
I have a general design question, and haven''t written any code for
this feature yet. I''m setting up a control panel for a sort of team/
content management system. A new project needs a team to work on it.
The project has been saved, so we don''t have to worry about that. But
each member of the team needs to have a role in relation to this
project (they may have
2007 Sep 07
6
ActiveRecord::Base#update_all expected behaviour
Hi
I noticed that if in my code I use the following:
Photo.update_all("title = ''Ruby rocks'' ", "id IN (#{@photo_ids})")
All my objects are properly updated but none of the filters/callbacks
are triggered. Is that what''s expected?
I have a before_update filter set on the Photo class and it gets
totally ignored, I guess the only way to solve this
2007 Nov 15
2
Trouble using should_receive
I have this code trying to ensure my reset method works. I want to
make sure all the participants have their destroy method called.
# in my spec for Room
r = Room.new(:name => ''bob'')
r.save
p = Participant.new(:login => ''a'', :password =>
''b'', :password_confirmation => ''b'')
p.room = r
2006 Jul 31
9
Problems with ever-increasing ID value
I have a script that I am using to populate a database from a CSV file:
RAILS_ENV = ''development''
require File.dirname(__FILE__) + ''/../../config/environment''
require ''csv''
# Destroy existing data
Residence.destroy_all
# IMPORT DATA FROM apartments.csv
db_file = "#{RAILS_ROOT}/db/apartments.csv"
CSV.open(db_file, "r",
2006 Feb 18
2
Sharing a Hashtable between all sessions?
Is it possible with RoR?
In my case this shared Hashtable is a language translation table for
several hundred terms, and does not need to be updated.
I would like it to be shared in order to avoid loading it once for each
session.
Thanks,
Marcus O.
--
Posted via http://www.ruby-forum.com/.
2010 Dec 21
2
Fetch without setting flags
Hello,
I'm customizing squirrelmail and I want to print a line from the message
in front of the subject in mailbox listing (like gmail).
the problem is, when I use 'FETCH {SOME_ID} BODY[]' the message gets
marked as seen. How can I fetch without setting the senn flag ?
Thanks
Behrooz
2006 Mar 21
4
Kaybord problem with "@" and "[" and "]" in console..
I am using RoR on Win XP:
ruby v. 1.8.4
gem v. 0.8.11
rails (1.0.0.3855, 1.0.0)
when running "script\breakpointer" or "script\console" from a normal dos
prompt window everything is working well, except i am unable to type the
characters "@","[","]", and some others: they simply don''t appear when
pressed. Not even copy/pasting those