Questions in this tag typically involve the association that a set of data has with other set(s) of data.

learn more… | top users | synonyms

0
votes
0answers
36 views

How to do a merge inside a controller? [duplicate]

I'm trying to create a many-to-many relationship, but I have this problem when I try save it to table. def new @filme = Filme.find(params[:id]) @usuario = Usuario.find(params[:ud]) ...
0
votes
0answers
26 views

ManyToMany relationship by specific link table

I need to avoid @ManyToMany and @OneToMany JPA annotations by using specific link table. I have two entities: articles(id, title, text) and authors(id, login, password). One author can have multiple ...
0
votes
1answer
66 views

How to add value to the table from view of another in rails?

Consider i have two tables namely Item and color. The Item table contains has_many relationship with colour as each items can have more than one color but the colors are not already present. I have ...
0
votes
1answer
48 views

Is this relational approach scalable?

I'm working on a task manager application - one aspect of this is project ownership and access permissions. On paper, it makes sense just to make a project_user_meta table, like so: REL_ID USER_ID ...
0
votes
1answer
53 views

using relationship table data to build query removing certain rows within the query based on variable

I may be going about this the wrong way as i could not find a question quite like this. i have a product table id - name - parent ---|------|-------- 1 |p-A | 0 -default 2 |p-A1 | 1 ...
0
votes
2answers
33 views

Performing Searches over Many-to-Many Relationships

I have a database which (for the purposes of this example), has two tables that have a many to many association (with an intermediary table for holding the associations). Here is there structure: ...
-1
votes
1answer
38 views

Zend_Db magic method specific cell selection

Currently I'm working on a couple of model related improvements and looking into a specific query I've wrote. $queryGetPages = $this->fetchAll($this->select() ...
0
votes
1answer
44 views

Emberjs Many-to-one Unidirectional Relationship

Does Emberjs support uni-directional relationships? Consider that I want to store information about recipes with three models: Ingredient Always exists. Gives a name and description. Nothing ...
1
vote
1answer
62 views

entity framework relationship issue

I have the foloowing models: public class Employee { public int ID { get; set; } public string name { get; set; } public int LocationID { set; get; } public ...
1
vote
1answer
32 views

Plural Name in Association in Rails

I have user model and a car model I want to have a model which will hold the settings for each car and each user so I do class CarSettings < ActiveRecord::Base belongs_to :user belongs_to ...
0
votes
0answers
77 views

Core Data query through many "many-to-many relationships

New to Core Data, I'm trying hard to understand how to access and query through multiples many-to-many relationships. Here's the model: http://dl.free.fr/dRqgjMgR4 I would like to get the number of ...
0
votes
1answer
50 views

How to check if a bean is related

I'm fairly new to SugarCRM and I would like to know something about relationships. I have a bean lets say Account and an ID of a record in the database, lets say contact. Now I would like to know if ...
2
votes
0answers
63 views

What inverse_of does mean in mongoid?

What inverse_of does mean in mongoid associations? What I can get by using it instead of simple associations without it?
1
vote
2answers
112 views

SQLAlchemy Using relationship()

I am using SQLAlchemy here, trying to make a couple tables and link them and am having problems implementing this. class Team(Base): __tablename__ = "teams" id = Column(Integer, ...
1
vote
2answers
169 views

how to draw a line between to table rows with jQuery based on a relation

I'm trying to replicate this image as you can see the HTML has 2 points and a line that connects them between. I did this in photoshop to demonstrate what i would like to achieve. So far most of the ...
1
vote
2answers
67 views

Having generic belongsTo in grails domain

I have three classes in my grails project. What is the proper grails domain definition Class A { List<Resource> xResources List<Resource> yResources hasMany = [ xResources: Resource, ...
0
votes
1answer
52 views

show related tables records in asp.net

We have two related tables with one-to-many relationship: Assignment and Submission We have an aspx page in which we want to show Assignments (where AssignmentClassID==X) and Submission of that ...
0
votes
0answers
168 views

Core Data Managed Object one-to-many relationship insert/update save

Lets assume I have person->phones relationship (One to many of course). Initial insert save is working correctly where I do: if (does not exist) { user = (Member *)[NSEntityDescription ...
-5
votes
1answer
107 views

Estimate relationship between X and Y in R [closed]

I want to estimate the relationship between X and Y (from data m) using P (see below) at 100 equal points over (0, 10). How can I do this using R? > m X Y 1 0.5 6.0 2 1.5 ...
0
votes
2answers
125 views

Drupal Views / Node Reference get parents relation

Ok, sorry for that title, it´s hard to describe. My problem is the following: I have the Content Types "Product Category" (don´t using Taxonomy for this for several reasons) and "Product". Products ...
0
votes
0answers
24 views

Can you relate two table entries on the same table Oracle table

I am not very experienced with Oracle tables and not sure of some functionality that could help me with my possible issue. I have two records in a table that both have three entries in them each ...
1
vote
2answers
54 views

Java-EE-6: How to store a boolean in a @ManyToMany and @ManyToOne relationships?

I am working on a data model that basically consists of users and documents. Now everytime a new document is added, there should be a flag that identifies a document as "unseen" as long as the ...
0
votes
0answers
50 views

How to define mutually exclusive subtypes in access

I want to do the following in access: I have 2 tables: "Matrix" and "Land" My client needs to keep track of events that can occur to a Matrix or a Land, but in the future, more tables might need ...
0
votes
1answer
41 views

Drupal 7 expanding fields

I have a field in a cms called 'services' the services is a lsit of checkboxes with the values 1|digital 2|web 3|print 4|apps The issue is each of the options has a related url. Is there way to ...
4
votes
3answers
216 views

ASP.NET MVC Entity Framework Relationship binding

I'm using Entity Framework 5.0 for my MVC4 project. There's a problem with it. When i give a db model to any view, controller send model with no relationship example; I have User class and with ...
0
votes
1answer
343 views

Laravel Eloquent one-to-many relationship

I am having real problems getting Laravel's Eloquent ORM to return data for a relationship. My migrations (database schema): Schema::table('users', function($table) { $table->engine = ...
1
vote
2answers
87 views

Ruby on Rails Relationship between 3 models

I am following a tutorial made for Rails 3, I am using Rails 3.2 but think I am following it correctly but am getting an error, My classes are as follows and the error occurs when I use, ...
2
votes
0answers
151 views

How to map identifying relationship in Entity Framework 5 code first child entity with multiple mutually exclusive parent entities

Im using Entity Framwork 5 Code First and I have the following model: class Document { public int Id {get;set;} public String Name {get;set;} public IList<Page> Pages {get;set;} } ...
1
vote
0answers
72 views

Some relationship-status not getting returned when clearly visible on profile

When using the open graph api to list - all friends by relationship_status some friends are getting returned empty for relationship_status. I have the right permissions set as most friends ...
0
votes
1answer
94 views

How should one define a second date hierarchy in SSAS?

I have a time table and a sales fact table with multiple dates (order received date, ship date). I want to define a hierarchy on the order received date and another hierarchy on the ship date. The ...
3
votes
1answer
73 views

paper_trail and keeping relations untouched

Is there any possibility to force paper_trail to not change relations when it's version changes? My app is a betting software and I need to keep user bets on the one that was active at the time when ...
1
vote
1answer
31 views

Grails 1:m get most relations

I'm relatively new to Grails. I have the following class House { Integer number Integer maxResidents static belongsTo = [town: Town] } class Town { String name static hasMany ...
1
vote
1answer
39 views

Core Data Relationships after entities are filled up with data

I have two entities Team & TeamMembers which are initially filled with data from two json files. So there is no connection between those entities at the moment. Is it possible to make ...
1
vote
1answer
126 views

association relationship in UML

As i read through software engineering appendix 1 from Roger Pressman book that an association between two classes means that there is a structural relationship between them what structural ...
0
votes
2answers
65 views

How to select random ID in Mysql query

SELECT e.ent_seq, GROUP_CONCAT(DISTINCT kei.keb SEPARATOR'; ')AS kebs, GROUP_CONCAT(DISTINCT rei.reb SEPARATOR '; ') AS rebs, GROUP_CONCAT(DISTINCT sei.mean SEPARATOR '; ') ...
1
vote
2answers
127 views

MySql Select data is many to many Relationship in PHP

ENTRY (Table) ent_seq entry 100010 1 100020 2 100030 3 100040 4 K_ELE (Table) KID entry keb 1 1 食べる 2 2 日本 3 3 先生 R_ELE (Table) RID entry ...
2
votes
3answers
68 views

How to make a copy of a relational record in the same tables?

I have three related tables - Users have Groups, and Groups have Items: Id UserName 1 Joe 2 Fred Id GroupName UserId 1 TestGr1 1 2 TestGr2 1 Id ItemName GroupId ...
-2
votes
1answer
55 views

how to insert records on a table having one is to many relationship in sql server 2005 from c# [closed]

Im having trouble in inserting records in sql server from c#(windows application) wherein the tables has a one to many relationship, the app always give me an error. Please help me to know this one. ...
0
votes
1answer
114 views

rails inheritance

Good Evening Guys, I have three scaffolds: rails generate scaffold person alter:integer, name:string rails generate scaffold trainer rails generate scaffold sportler class Person < ...
0
votes
1answer
34 views

rails database query, html drop down, interaction 1:n relation

Good Evening Guys, I have generated four scaffolds Person, Trainer, Sportsman and Index. class Person < ActiveRecord::Base attr_accessible :alter, :name end class Sportler < Person ...
-2
votes
1answer
74 views

Datamapper php relations [closed]

Well, I have 3 tables: sorty with fields id, name, fStart, fEnd bol with fields id, fol, and bol_sorty with id, bol_id, sorty_id When I add a new register to sorty, it must add to bol the number of ...
0
votes
0answers
47 views

how i make relationships between tables in rails?

this is what i am trying to make: http://i45.tinypic.com/vfjtdj.png how should be the model for those tables? i need something like this? for institutions class institution < ActiveRecord::Base ...
1
vote
2answers
58 views

PSQL unique constraint on two columns

I have a table which I use to link two more tables together in a 1 to many relationship. TableA id name TableB id name LinkTable TableA_id TableB_id Basically, one of TableA can have many of ...
0
votes
2answers
43 views

connecting records in 3 tables randomly

I have three tables: categories (id) product_models(id, category_id) products(id, product_id, category_id) There are records on each table (lorem ipsum content), i want to connect the data. I've ...
0
votes
1answer
107 views

Doctrine oneToMany - querying for one

I have a one to many relationship where one page has many versions. **page** id parent_id **page_version** id page_id title published date These are related by the foreign key page_id. So I have ...
1
vote
1answer
24 views

How to access my user activity on other users' pages or fan pages using the Graph API?

I would like to find any of my own activity (post, comment, share, etc.) on another user's page or a fan page. That is, obtain a list of all the comments, posts and whatnot that I have made on user ...
0
votes
0answers
55 views

Circular relationships in database model

Hi I have a question about some circular relationships that I am facing with my database design and from what I read circular relationships are not desired. I read a few more similar questions but ...
1
vote
1answer
80 views

How do I avoid multiple definition errors when purposefully linking the same object more than once?

I'm using gnu make, and gcc for compiling. I'm on linux (Ubuntu) Here is a diagram for the game black jack where the nodes represent eventual object files. I have organized the code where ...
0
votes
0answers
243 views

Difference between conceptual schema and relational schema

I am trying to distinguish between conceptual schema and relational schema. I have a project which requires ER Diagram as part of conceptual schema. However in the second part it requires the ER ...
0
votes
1answer
77 views

CurrentDB.Execute Active Record Reference

Access 2010 here. There are two tables in a 1-to-1 relationship (MainDB, Parts) and a command from the form (MainForm) that operates on the "Parts" table: CurrentDb.Execute "DELETE * FROM Parts ...

1 2 3 4 5 20