Displaying 3 results from an estimated 3 matches for "activerecod".
Did you mean:
activerecord
2006 Jan 20
2
AWS and passing in a Model
...n error saying that I cannot have ActiveRecord
objects as parameters. Fine. I can have AWS Structs as parameters. I
don''t want to start ''maintaining'' a struct everytime I change the table
structure od Persons.
So, is there an elegant way to ''port'' my ActiveRecod Person to my Struct
Person, or, is there another way to make use of my ActiveRecord Person
to be able to pass it in as a parameter to my webservice method?
Thanks
Joerg
--
Posted via http://www.ruby-forum.com/.
2006 May 14
9
IBM UniVerse database adapter for ActiveRecord?
I''m facing a situation where I am going to have to integrate with a
legacy database , specifically the IBM UniVerse database, which is not
*quite* relational. It feels like a holdover from the dark ages of
computing.
Before I attempt writing an ActiveRecord adapter, I''d like to know if
anyone else uses this database and if I''m the only person that needs
this thing. I
2006 Sep 25
3
Subclasses - help required
Hello all and hoping for some insight
a project manger type of application, staff are assigned to projects,
but each staff has varied roles for different projects... STI does not
seem to be applicable here
Imagine a table staffs...
id int
name varchar
blah....
is_manager int 1
is_engineer int 1
is_producer int 1
and projects...
id
name
manager_id
engineer_id
producer_id
how is the best way