Tagged Questions
The relationship tag has no wiki summary.
12
votes
4answers
2k views
Calculate Family Relationship from Genealogical Data
I would like to be able to calculate the family relationship between two individuals in a family tree, given the following data schema (simplified from my actual data schema, only showing columns that ...
10
votes
2answers
261 views
How are `ghc-pkg` and `cabal` programs related? (Haskell)
As I know cabal is a program to manage installation of packages like FreeBSD's pkg_add.
But there is another tool called ghc-pkg. I don't know why there are two different programs. What's the role of ...
10
votes
5answers
4k views
Cosine similarity vs Hamming distance
To compute the similarity between two documents, I create a feature vector containing the term frequencies. But then, for the next step, I can't decide between "Cosine similarity" and "Hamming ...
9
votes
4answers
4k views
Still Confused About Identifying vs. Non-Identifying Relationships
So, I've been reading up on identifying vs. non-identifying relationships in my database design, and a number of the answers on SO seem contradicting to me. Here are the two questions I am looking ...
8
votes
6answers
217 views
Refactoring nested for loops
I have this situation where I have a parent child relationship between two sets of data. I have a parent document collection and a child document collection. The requirement is that the parents and ...
7
votes
3answers
119 views
Java model validation
We are looking for a Java library/system/package which not only does basic validation but also can do relationship validation. We need to be able to express validation criteria which is based on ...
7
votes
6answers
2k views
Meaing of “n:m” and “1:n” in database design
In database design what do n:m and 1:n mean?
Does it have anything to do with keys or relationships?
7
votes
12answers
18k views
Representing parent-child relationships in SharePoint lists
I need to create some functionality in our SharePoint app that populates a list or lists with some simple hierarchical data. Each parent record will represent a "submission" and each child record ...
5
votes
3answers
55 views
Are joins on an FK faster than joins without an FK?
Say I have two tables, a and b:
a {
pk as int
fk as int
...
}
b {
pk as int
...
}
I want to join a and b in a query like so:
FROM a
JOIN b on a.fk = b.pk
Which of the following scenarios ...
5
votes
2answers
316 views
How to create a relationship between Leads and Custom Modules in SugarCRM CE?
function createPJOpportunityRelationship($pj_id, $op_id) {
echo "creating relationship";
$set_relationship_value = array(
'module1' => 'geral_pessoa_juridica', 'module1_id' => ...
5
votes
3answers
274 views
JPA define relationship on a field that requires type conversion
I want to join two tables on column "vendor",
In invoice table vendor type is integer, in vendor table, vendor is type varchar(10).
Is it possible to do a type conversion and also have a ...
4
votes
2answers
190 views
Saving join attributes through a has_many :through with :conditions
I have an Artist model that looks like this:
# app/models/artist.rb
class Artist < ActiveRecord::Base
# Relationships
has_many :releases
has_many :songs, :through => :releases
...
4
votes
2answers
615 views
MongoDB, Grails, and relationships
I was curious about how the MongoDB plugin for Grails would handle relationships. In order to test this I made a very simple application with two domain classes:
Authors have two fields: String ...
4
votes
1answer
537 views
Many-to-many self-referential relationship in sqlalchemy
I'm trying to make a self-referential many-to-many relationship (it means that Line can have many parent lines and many child lines) in sqlalchemy like this:
Base = declarative_base()
class ...
4
votes
1answer
419 views
Rails: Delete a Has-Many Relationship ONLY
I have a: has_and_belongs_to_many :friends, :join_table => "friends_peoples".
To add a friend I do: @people.followers << @friend which create the relationship and a new person profile.
Now ...
4
votes
1answer
89 views
Getting a list of related models in rails
Suppose I have an object Person, which has_many :foos and :bars.
Given an instance, p (p = Person.new), how do I programmatically determine what relationships are available?
i.e. p.some_method => ...
4
votes
4answers
340 views
LINQ to SQL Basic question - table relationships
I'm playing with an image gallery in ASP.NET MVC, and trying to get my head around LINQ to SQL at the same time. I have 3 tables to hold image gallery data, with a many-many relationship through a ...
4
votes
1answer
1k views
Cakephp retrieving HABTM which Conditions
I'm using cakephp and would like to display all Submissions which are part of Category 'X'
I have 4 tables with a HABTM relationship.
Users -> (haveMany) -> Submissions <-> (hasAndBelongsToMany) ...
3
votes
2answers
647 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
1answer
60 views
Maintaining object relationships with PHP serialization
I came across a quite tough problem to solve regarding objects implementing the Serializable interface. Let's take an example:
class A {
public $b;
}
class B {
public $a;
}
$a = new A;
$b = ...
3
votes
2answers
97 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 ...
3
votes
1answer
90 views
Ruby on Rails: Retrieving a friendship given two users
I have seen the railscast on self-referential relationships here: http://railscasts.com/episodes/163-self-referential-association
I have built upon this in that I've included a 'status' field on ...
3
votes
1answer
856 views
Doctrine 2 - Disallow null value on foreign keys of ManyToOne relationships
I have a ManyToOne relationship in one of my entities, like so:
class License {
// ...
/**
* Customer who owns the license
*
* @var \ISE\LicenseManagerBundle\Entity\Customer
...
3
votes
3answers
192 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 ...
3
votes
4answers
128 views
Model Relations in Ruby on Rails
I'm working on a new app in Rails 3 but I'm not sure how can I build the relations between the models.
Basically I have a model User and a model Project. An user can create a Project, becoming the ...
3
votes
1answer
82 views
Is it possible to get two different relation times between two nodes?
I am new to Neo4j & just playing to learn in deep. I have a small doubt like,
if I created two nodes in the space and provided relationship and also the system time (to know at what time they ...
3
votes
1answer
216 views
NSFetchedResultsController change tracking across relationship
I have a model with two entities linked by a to-one relationship. I want to display in a TableView all EntityA objects where entityB.myIntAttribute equals a given value. This works when I create a ...
3
votes
1answer
142 views
MySQL Query Complex Relationship of One Way Linking
I've been pondering over this for a while. Basically I have a list of websites in a table. Each one of these websites has several posts. Each post can link to at least one other website. I keep a ...
3
votes
2answers
79 views
Why/how is it possible to call class methods of a model on a collection/array returned by a relationship?
So I came across an interesting bit of code today and it caught my attention. I didn't think this was possible. The line of code was:
@post.comments.approved_comments
Looks alright, right? But what ...
3
votes
4answers
1k 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. ...
3
votes
2answers
427 views
How do I access the properties of a many-to-many “through” table from a django template?
From the Django documentation...
When you're only dealing with simple many-to-many relationships such as mixing and matching pizzas and toppings, a standard ManyToManyField is all you need. ...
3
votes
1answer
2k views
iPhone Core Data relationship fault
I am building a core data iphone app, and having trouble with retrieving one-many relationship data. Please bear with me while I explain.
I have used the data model designer to setup an entity called ...
3
votes
1answer
869 views
SQLAlchemy - relationship limited on more than just the foreign key
I have a wiki db layout with Page and Revisions. Each Revision has a page_id referencing the Page, a page relationship to the referenced page; each Page has a all_revisions relationship to all its ...
3
votes
1answer
539 views
Rails: Referring back to model the object belongs to
This is probably a dumb question, but I can't seem to find a good answer. I want to know the best way to refer back to the model that an object belongs to.
For example:
class User < ...
3
votes
9answers
4k views
How to design a movie database?
I'm trying to get my head round this mind boggling stuff they call Database Design without much success, so I'll try to illustrate my problem with an example.
I am using MySQL and here is my ...
2
votes
0answers
43 views
Ruby on Rails: Better approach to delete related models
I have the following classes/relationships defined:
class Component < ActiveRecord::Base
has_many :component_stories,:dependent => :destroy
has_many :stories, :through => ...
2
votes
1answer
57 views
Rails “follow” relationship controller issues
I am working on an app where users' "projects" can follow "plant" objects from the database. I am getting the following error for the create action in my "Prelationships" controller (Plant ...
2
votes
2answers
79 views
How to express a Total Order Relation in Prolog?
What is the best way to express a total order relation in Prolog ?
For example, say I have a set of facts
person(tim)
person(ana)
person(jack)
...
and I want to express the following truth about a ...
2
votes
2answers
91 views
How to define two relationships to the same table in SQLAlchemy
I’ve looked all over the SQLAlchemy tutorial and other similar questions but I seem to be struggling to get this join to work:
The scenario: I have a pages table represented by the Page model. Pages ...
2
votes
1answer
155 views
SQLAlchemy Declarative + relationships across multiple different databases
It took me a while, but I figured out how to use SQLAlchemy to model a relationship across two different kinds of databases:
Base = declarative_base()
class Survey(Base):
__tablename__ = ...
2
votes
4answers
85 views
How to relate or associate an object in JavaScript to an HTML element?
How to relate or associate an object in JavaScript to an HTML element?
For each object in an array, I generate a checkbox input element based on that object.
If I add an event listener to capture ...
2
votes
2answers
273 views
SQLAlchemy declarative many-to-many self-join via Association object
I have a table Users and a table Friends which maps users to other users as each user can have many friends. This relation is obviously symmetric: if user A is a friend of user B then user B is also a ...
2
votes
1answer
79 views
Rails views: join on has_many relations instead of iterating through them?
Rails views: join on objects
Hi,
think of the show view of the model User that has a has_many relationship with the model Role. I want to iterate through all associated Roles that belong to a ...
2
votes
1answer
177 views
HABTM Polymorphic Relationship
:)
I'm pretty new to Rails, and i'm trying to do a polymorphic HABTM relationship. The problem is that I have three models that I want to relate.
The first one is the Event model and then are two ...
2
votes
5answers
42 views
inheritance is an 'is-a' relationship; What is a good way to summarize the 'interface' relationship? — Summarizing other relationships?
Title: inheritance is an 'is-a' relationship; What is a good way to summarize the 'interface' relationship?
Also, I think it would be nice to have a repository of simple relationships to help ...
2
votes
1answer
176 views
RESTful API design (connection of resources)
I'm designing an API for my web project (PHP) but run into trouble when modeling relationship between resources with properties. I would like to get some input on how to proceed.
Resources:
Users.
...
2
votes
1answer
36 views
Making changes to Objects in a rails migration
I'd like to migrate a belongs_to relationship that I currently have to a has_and_belongs_to_many relationship. Ideally I'd like to do this in the migration that I've built.
When I add this new ...
2
votes
2answers
125 views
Do I Have to Manually Set a Core Data Object's Inverse Relationship in Code on the iPhone
I am new to core data so please excuse me if I get some of the terms wrong.
I have several objects in my xcdatamodel file. They are all inter connected with relationships and inverse relationships. ...
2
votes
1answer
67 views
Restrict database tree depth
Typically when I represent a parent child hierarchy I have a table as follows (I might also add additional depth columns to speed things up), where parents and children are both foreign key ...
2
votes
5answers
88 views
How to I design a database constraint so two entities can only have a many to many relationship if two field values within them match?
I have a database with four tables as follows:
Addressbook
--------------------
id
more fields
Contact
---------------------
id
addressbook id
more fields
Group
---------------------
id
...