Dr_Nic
(Dr Nic)
23 July 2006 14:12
1
[Cross-posting from Ruby on Rails forum]
ActiveRecords with composite primary keys now seem to happily support
find/create/update/destroy options.
Url: http://compositekeys.rubyforge.org
Background:
Rails/ActiveRecords has long been critised for not supporting legacy
databases, especially composite primary keys. This gem extends ARs with
this support.
Cheers
Nic
···
--
Posted via http://www.ruby-forum.com/ .
Thanks, Nic, for crossposting!
I'm so happy to know, that composite primary keys
can at last be used with ActiveRecord.
Thanks you for sharing your code with us (me, especially )
Sven
Dr Nic wrote:
···
[Cross-posting from Ruby on Rails forum]
ActiveRecords with composite primary keys now seem to happily support
find/create/update/destroy options.
--
Posted via http://www.ruby-forum.com/\ .
Dr_Nic
(Dr Nic)
24 July 2006 09:14
3
Sven Suska wrote:
Thanks, Nic, for crossposting!
I'm so happy to know, that composite primary keys
can at last be used with ActiveRecord.
Thanks you for sharing your code with us (me, especially )
No problems
Let me know of any special use cases that don't work (else I'll just
keep writing code that just I need)
At the moment I'm working on foreign keys in associations, e.g.
class Foo < AR::Base
has_many :bars, :foreign_key => [:bar_id, :seq]
end
Cheers
Nic
···
--
Posted via http://www.ruby-forum.com/\ .