Displaying 2 results from an estimated 2 matches for "schlack".
Did you mean:
schaack
2011 May 27
1
AEC learning behaviour
Hi,
I already implemented and posted a patch to do this serialization a few
weeks ago.
http://permalink.gmane.org/gmane.comp.audio.compression.speex.devel/6913
It is not integrated into the main git tree though.
Regards,
Simon
On 26/05/2011 21:21, Stuart O Anderson wrote:
> This is not part of the current API. It shouldn't be too hard add a
> serialization routine for
2006 Apr 15
0
parent.children not updated (has_many)
Hi guys!
class Parent < ActiveRecord::Base
has_many :children
end
class Child < ActiveRecord::Base
belongs_to :parent
end
I do:
parent = Parent.find(1, :include => :children)
parent.children.find(3).update_attribute(''name'', ''Tom'') (or
parent.children.find(3).name = ''Tom'')
parent.children.find(3).name
=> ''old