0
votes
1answer
48 views
Conditions in associated models using Model->find() (CakePHP)
Hi, I am having some issues with CakePHP's find() method and conditions in 'deeper' model associations. There are some of these around but I could not find an answer to this so far …
1
vote
1answer
35 views
multiple database relationship on field other than primary key in CakePHP
I have a project that necessarily spans several databases.
One database has tables:
CREATE TABLE device {
device_uid integer unsigned not null primary key auto_increment,
o …
0
votes
1answer
24 views
clarification of association terms
Hi
Can anyone help me with a clarification of these terms; Relation, Association, linkage..etc.
I have started a smaller study of UML with a particular focus on associations an …
0
votes
1answer
31 views
Rails: save a record via belongs_to and setting the foreign key
Is there a better way of writing this code? It just doesn't sit right with me, I feel like there is something really 'rails like' that I should already know:
belongs_to :parent_in …
2
votes
1answer
61 views
NHibernate - access the ID of an associated object without lazy loading the whole object
I have two associated business objects - A and B.
the association is (A->B)many-to-one, with B.Id a foreign key in A (so A has A.B_id in the DB).
I'm using lazy=true and solved mo …
2
votes
2answers
410 views
Why do associated collections contain null values? (Hibernate, Annotation, Spring)
[Edit: Apparently, this is only an issue for arrays and FoxyBOA's answer might direct to (or even is) the answer.]
Hi, my question relates to these software: Hibernate3+Annotation …
0
votes
4answers
46 views
RoR: “belongs_to_many”? Association headache…
I can't seem to wrap my head around this, so I thought I'd post and see if anyone could help me out (please pardon the question if it's insultingly simple: it's complicated to me r …
0
votes
1answer
36 views
Associate a File To a Application
Hello,
I'm building two programs, a text editor and a zipper, but in this two programs I want to associate a file type to they, but how can I do this? Thanks.
1
vote
4answers
46 views
How could I be sure that choosing HABTM over has_many :through is more suitable?
I have been hearing a lot of buzz around has_many :through(HMT) vs has_and_belongs_to_many (HABTM). This post covers most of its benefits. Okay, HMT sure has some real good benefit …
0
votes
1answer
47 views
hibernate @DiscriminatorValue does not apply to associations
I have the following inheritance hierarchy.
@Entity
@Table(FRUIT)
@Inheritance(strategy=InheritanceType.SINGLE_TABLE)
@DiscriminatorColum(name="FRUIT_TYPE",discriminatorType=STRIN …
1
vote
1answer
38 views
[Rails] Can a model “belongs_to” either/or more than one model?
Apologies if this is a slightly noob question, but looking to clarify my thoughts on this. I have a model that can EITHER belong to one model, or another. For example:
Let's say I …
0
votes
0answers
44 views
polymorphic associations and routing
Hi
I am very new to rails and am having a problem with routing when using polymorphic associations.
On I have a link "Add Comment" on the page installations/1/onposts/2 the link t …
0
votes
3answers
72 views
What is the difference between association and dependancy relationship?
What's the difference between Association and Dependency? Aren't they both the same thing? as if class A is associated with B then Class A is dependent on B ie. there's a dependenc …
0
votes
1answer
31 views
Rails Filter records of child model based upon the parent model attribute
Following are the 1-to-M models:
class FotoGossip < ActiveRecord::Base
has_many :uploads
attr_accessible :published_at, ...
end
class Upload < ActiveRecord::Base
…
0
votes
2answers
87 views
Retrieve from multiple relations, ruby on rails
Hello,
user (has_many :user, has_many :comments)
post (belongs_to :user, has_many :comments)
comment (belongs_to :user, belongs_to :post)
Now I am trying to retrieve all posts (h …
