0
votes
1answer
59 views

find query for many to many relation propel

i am new for propel . i face a problem to fetch all record form both table which have many to many relation . i have a user and group table. and a join table user_group. user and group have ...
1
vote
0answers
45 views

Sqlalchemy primaryjoin join argument alternative

In sqlalchemy, one can specify the primaryjoin argument to the relationship construct to specify alternate join conditions. my question is: can this be done "manually" ie. is there an alternative ...
0
votes
2answers
239 views

Relationships in Laravel

I have two tables, Galleries and Gallery_items. In Galleries I save information like who the author is. In Gallery_items I save each picture that the gallery contains. Now I want to get the first ...
1
vote
1answer
69 views

One to many or many to many?

I'm creating a website which will contain multiple pages and multiple images. The relationship is that many pages can have many images. Therefore, I would usually create a join table called ...
0
votes
1answer
59 views

Composite data with Redbean

I've just read the Redbean Documentation, and it's awesome! But I have some questions before I proceed. I want to create a User data structure composed in a particular way. On the site I'm working ...
2
votes
1answer
83 views

How to define type of JPA relationship in this case?

I have class User and class Address. Address contains only 4 property: publiс class Address { private Long id; private String country; private String city; private String street; ...
2
votes
1answer
174 views

ORM: friendship/buddylist relationship

I'm trying to use ORM for the first time, I've defined the models like this: User model: class User extends Eloquent { public function friends() { return ...
1
vote
1answer
122 views

Bidirectional many-to-many attribute_mapped_collection, sqlalchemy

I have 2 classes as a many to many relationship A and B, shortened to show the basic relationship here: class A(Base): bclss = relationship("B", backref = "aclss", ...
2
votes
1answer
177 views

Sqlalchemy: secondary relationship update

I have two tables, say A and B. Both have a primary key id. They have a many-to-many relationship, SEC. SEC = Table('sec', Base.metadata, Column('a_id', Integer, ForeignKey('A.id'), ...
0
votes
2answers
57 views

Ruby on Rails model reuse

I'm quite new to RoR. Just to be short: Guest should be able to leave a Review for the Property he stayed in; Property is being owned by the Host. Host should able to leave a review for the Guest ...
0
votes
0answers
28 views

Article has many HeaderKey which has many HeaderValue ORM

The database looks as: mysql> mysql> mysql> SHOW TABLES; +------------------+ | Tables_in_usenet | +------------------+ | ARTICLE | | HEADERFIELD | | NEWSGROUP | ...
0
votes
2answers
147 views

Related field in osv_memory not working

I'm building an osv_memory wizard in OpenERP 5. However, it seems that I can't add related fields to the wizard. 'current_invoice_id': fields.many2one( 'account.invoice', ...
0
votes
1answer
120 views

kohana ORM relationship

I have two tables. Table1 { Column1, Column2 } Table2 { Column1, Column2 } And I have the relation as follows: Table1.Column1 belongs_to Table2.Column2 So in Table1_Model: protected ...
0
votes
1answer
36 views

How do I use this indirect relationship?

I'm working on incorporating a reputation system into my site, similar to SO. Here is how it is structured: User hasMany Project User hasMany Answer Project hasMany Rating Answer hasMany Rating ...
0
votes
1answer
312 views

DataMapper: multiple has-and-belongs-to-many relationships between the same models?

How can I set up multiple relationships of the has n, :through => Resource type between the same models with DataMapper? For instance, in a news CMS I would have something like this: class User ...
0
votes
2answers
414 views

Nested relationships for normalized db structure in FuelPHP ORM

First up, sorry for the mega-posting of code but... I have the following DB structure (not my choice): +---------+ +--------------+ +--------+ | users | | users_groups | | groups | ...
1
vote
0answers
42 views

Doctrine2, update a relation without fetching it [duplicate]

Possible Duplicate: Doctrine 2, inserting an entity with associations, is there a way to just use the FK of the associations instead of retrieving the entity? When performing the following ...
0
votes
1answer
312 views

Kohana has_many relationship

I'm using kohana 3.2 and I need help with has_many relationship. The table is written empty data... So, my User_education model look like: http://gyazo.com/218139e52d85718c0d47bb802f0856fe ...
1
vote
1answer
72 views

How can I create an m:n relationship not using the primary key in NHibernate?

Assuming I had the following tables: If I now set up a many-to-many relationship in NHibernate, the <key column /> attribute below will map the PublisherArticles.VersionIndependentArticleId ...
0
votes
1answer
77 views

Perform a search navigating a relationship between 2 models in Kohana

Let's say I have 2 models user and location. There is a defined relationship between the models that allows me to do this: $user->location->name; I don't know if it's possible but can I ...
2
votes
1answer
1k views

CakePHP hasOne/belongsTo model relationship

I have a few models I'm trying to relate. One model is Item, one is Slide, and another is Asset. Items have multiple slides beneath them. Assets are basically files that have been uploaded (images, ...
8
votes
4answers
5k views

backbone.js - handling model relationships in a RESTful way

I'm using backbone.js For example, let's suppose we have a "products" model and a "categories" model which have a many-to-many relationship. In one of my views, say I need to retrieve a list of all ...
3
votes
2answers
261 views

Creating a one-to-one relation for a pre-existing record using Doctrine ORM (1.2)

Background / Application I have two database tables, supplier and address with a one-to-one relationship, as not all suppliers have an address (and this is just a simplified example from a larger ...
1
vote
1answer
1k views

One to many relationships in Doctrine 2 ORM not inserting remote key

Hi there Stack Overflow members! I am having a problem with some Doctrine 2 relations that are current running me into the ground. I am attempting to setup a very nice and simple One to Many ...
0
votes
1answer
78 views

ORM Property Multiple Relationships

Im defining my cfc's and would like to know how you can define multiple relationships on the same column? For instance in a database which stores pets, their owners and their vet records: pet table ...
3
votes
3answers
831 views

SQLAlchemy: add a relationship using id instead of object?

Is it possible to add to a SQLAlchemy relationship using ids rather than objects? For example, consider two declarative SQLAlchemy classes, Review and Artist, with a relationship between them: class ...
1
vote
1answer
300 views

Zend_DBTable relationships

I know that the question has certainly be asked several times, but I can't find (understandable) responses to it. I've to tables 'spots' & 'members' and a relation table 'spotmembers'. In the ...
0
votes
1answer
234 views

Self referencing relation with followers|friends users

To make relationship between users was created a table that looks like. sql CREATE TABLE `friends`( `from` INT NOT NULL, `to` INT NOT NULL, UNIQUE INDEX(`from`, `to`) ); As you may know - field ...
0
votes
0answers
52 views

How does an ORM do relationships?

There are a number of really good tutorials on the web on building an ORM framework; however, i can't find anything on how an ORM framework handles relationships. First off is it done at the Object ...
6
votes
4answers
2k views

PHP ORM with full composite primary/foreign key support

I'm looking for PHP5 ORM which fully supports composite (multi-column) relations based on composite primary keys and foreign keys. I hoped that Doctrine 2 would solve this problem but it doesn't. ...
0
votes
1answer
276 views

Using PHP and Kohana 3, can one recursively find and output any model's relationships?

Let's say we have a User Model that has many Posts. The Posts Model has many Categories The Posts Model also has many Comments. How do we find dynamically, the relationships that the User Model ...
1
vote
1answer
663 views

Kohana v3 ORM Select and Where clause based on different table

Hi I need to do something like this: $hours->task->job->where('group_id' , '=' , $num)->find_all(); This would return job information. Is there any way to tell orm to return the information from the ...
2
votes
2answers
2k views

JPA - Removing of elements of a bidirectional Relationship

Why can i remove elements of a bidirectional relation although only one side of the relation is managed in persistence context (Example I)? When i have an unidirectional Relationship that doesn't work ...
1
vote
1answer
136 views

Accessing two sides of a user-user relationship in rails

Basically, I have a users model in my rails app, and a fanship model, to facilitate the ability for users to become 'fans' of each other. In my user model, I have: has_many :fanships has_many ...
1
vote
1answer
74 views

ORMers,how are you going to deal with this in the ORM style?

We are modifying our post on stackoverflow. And we only changed the tags part,removed tag1,tag2 and added tag3,tag4. After pressing the Post Your Question button,these things should be done: ...