Displaying 5 results from an estimated 5 matches for "hrtevi7k".
2008 Jul 30
2
Mysql "lock wait timeout" tuning
We''re seeing these errors intermittently:
###
Mysql::Error: Lock wait timeout exceeded; try restarting transaction:
UPDATE `chairs` SET `published_at` = NULL, `updated_at` = ''2008-07-30
15:31:05'' WHERE `id` = 2147
[RAILS_ROOT]/vendor/rails/activerecord/lib/active_record/
connection_adapters/abstract_adapter.rb:147:in `log''
###
The root issue is probably
2005 Dec 18
5
restarting fastCGI process
Hi, I am very new to this so please go easy on me... I am trying to
deploy my app on dreamhost and I seem to be having problems getting it
working. One of the troubleshooting items on the wiki states:
Rails apps in production mode do not reflect changes made after they
start running. So, if you found a bug, fixed it and nothing appeared to
happen--this is probably because you
2005 Dec 23
6
Save using Update
Hi,
I want to update an existing row in table "items" where items.id == 10
I tried this:
item = Item.new
item.f1 = ...
item.f2 = ...
...
item.id = 10
item.save
I got an error
Duplicate entry ... for key 10 : INSERT INTO items ...
How do I make item.save to use UPDATE instead of INSERT?
--
Posted via http://www.ruby-forum.com/.
2005 Dec 16
10
Associative arrays
I just started playing with rails this week and am working on porting our
existing website to rails
in our navigation we have a list that has the days of the week that link to
the articles for those days.
this seems to be working when I had it in the template it would give me the
array I was looking for so I decided to move it to the helper so that I
could use it on all my templates.
2005 Dec 15
3
save and save! fail but no errors are created
Hi
I will provide code if needed but I am wondering
if there might be a standard cause for this: a
Model I am trying to save seems to fail miserably
at either a #save or #save! call. In the latter
case, a RecordInvalid is raised, but when I inspect
it, the Errors object does not contain any error
messages (full or otherwise). I have tried many
a way but I can not seem to get any error info.
Are