The relations tag has no wiki summary.
0
votes
0answers
35 views
Complexity computation of a determinant recursive algorithm
I have written an algorithm to compute the determinant of nxn matrix, base on Laplace Expansion:
I got the reccurance relation below:
T(n) = n(n^2 + T(n-1))
I read in Wikipedia that this should ...
1
vote
1answer
40 views
Meteor + MongoDB - display list of posts with their comments count
I'm very new to Meteor, so this question might sound awkward. I'm trying to display a list of all posts
Posts = new Meteor.Collection('posts');
and then in Meteor.publish('posts', ...)
return ...
0
votes
1answer
29 views
Django save model and its children with ModelForm
I have such models: Article, Link & ArticleLink. Article can have many links attached to it and I need to save them from one form.
I have created all the relations and a ModelForm for Article, ...
0
votes
1answer
50 views
Method is not defined on the Query class
I have some related models:
Client
id, name, user_id ++
Projects
id, title, client_id, user_id ++
Users
id, name ++
A client belongs to a user, and a client has many projects, and a project ...
0
votes
1answer
33 views
Double listing not working in Symfony 1.4 embedded form
I'm struggling to get a simple form working in a Symfony 1.4 backend module.
The idea is to create an embedded form (One to many relation, Inschrijvingen -> Danser). Each embedded form has one many ...
0
votes
1answer
22 views
How to sort by nested field value with Mongoid?
Let's say I have a User with a field name, and which has_many teams, and a Team that belongs_to a user, and belongs_to a sport. A Sport has a field name and has_many teams.
I want to walk through the ...
0
votes
1answer
35 views
SQL Server CE : how to add relation to “static” table
First off all I'm using SQL Server CE and I've created a data context for my database to handle it in C# code.
This is my problem:
In TableA, there are several "static" items that won't change: they ...
0
votes
1answer
25 views
How do I modify rails associations from the command line?
I added a relationship a little while ago to users (user has many cars).
But my boss has told me I need to make a new model for companies which the
cars will belong to the company and the leases will ...
0
votes
1answer
64 views
How to get more data from a relationship table in Yii
I have 3 tables:
numbers (id, name)
food (id, name)
numbers_food (number_id, food_id, price_per_ad, price_per_ch)
How I can to get a price_per_ad and price_per_ch data for each food_id from ...
0
votes
2answers
30 views
CakePHP associating Users with one City
I have a User table and a table for the cities, which I want to associate with each other. As you guess, a City can have multiple Users but one User can only be linked to one city.
I really don't ...
0
votes
2answers
70 views
Yii how to count related models (getRelation with params)?
I have a HAS_MANY relation called "relationName",
So I can get all related models using
$model->relationName;
or using
$model->getRelated('relationName');
I can also get a subset of ...
0
votes
0answers
31 views
Why is this set of ordered pairs transitive?
{(1,1),(2,2),(3,3),(4,4)}
I know that
{(2,2),(2,3),(2,4),(3,2),(3,3),5,4)}
is transitive but I don't understand the first one above. I thought if (a,b) and (b,c) then (a,c)?
1
vote
2answers
47 views
How to implement mySQL self-relationship?
How can I create a Message table such as this in mySQL where it stores messages and their responses?
0
votes
1answer
46 views
greendao - deleting and deleting relations (understanding questions)
First question is, when does greenDao generate a delete function for a entity? And what's the difference between calling the entity.delete() and the session.getEntityDao.delete(entity)?
Second, if I ...
1
vote
1answer
51 views
“Chained” relations (1:n:m) with Mongoid and Rails
I'm trying to achieve a really simple "multiple relationship" in Rails (3.2.12) with Mongoid (3.1.2). I got three models:
class User
include Mongoid::Document
field :name
has_many :collections
...
0
votes
1answer
267 views
Is this relation reflexive, symmetric, transitive and/or antisymmetric [closed]
I have been working through this question for a while now and think I have come up with the correct answer for it. I'm unsure about whether or not I have one it properly though and there's not much I ...
0
votes
0answers
67 views
How can I have a conditional relationship in a model?
I have two types of profiles in the application, and they are two different tables. For example, personal profiles are in the 'person' table and their IDs begin with 'p', and the business profiles are ...
0
votes
2answers
407 views
asp.net : How do I set dropdown list values related to a textbox string?
I have a small problem: I am working in asp.net mvc4 and I need to fix this situation:
I have a page with a textbox and multiple dropdown lists. Those dropdown lists' values are related to what the ...
1
vote
0answers
32 views
Storing connections between table rows in mySQL
Environment: PHP-, MySQL-based MVC application.
Some background: A few modules in the application handles specific tasks and each module store its data in a separate table. The modules are themselves ...
0
votes
2answers
54 views
Django: get related set from a related set of a model
class Book(models.Model):
# fields
class Chapter(models.Model):
book = models.ForeignKey(Book)
class Page(models.Model):
chapter = models.ForeignKey(Chapter)
i want all the pages of ...
0
votes
1answer
34 views
JPA Java mapping relations
In java I have a superclass Element and 4 subclasses, lets call them ElementA, ElementB, ElementC, ElementD.
Tables in my DB:
Element(ElementID, title, description, targetGroup) : Primary key ...
1
vote
2answers
41 views
Return false then an item can't be added to a has_many with :through
I have this models relations
class User < ActiveRecord::Base
has_many :trip_memberships, dependent: :destroy
has_many :trips, through: :trip_memberships, uniq: true
end
class Trip < ...
0
votes
1answer
82 views
Changing the condition of relations in Yii
I'm facing a little problem and I need your help. I would like to join two tables, but there would be other conditions for the join not just the foreign key. I have tried setting condition parameter ...
0
votes
1answer
135 views
Symfony 2 form associated entity with relation to the parent fails to save
I am trying to follow this tutorial to have a many to many relation with join table as a form entity:
http://www.prowebdev.us/2012/07/symfnoy2-many-to-many-relation-with.html
In my case I have the ...
1
vote
1answer
69 views
Relations with view oracle forms
I have two blocks on my form. The firs block: "vista_clientes", and the second "pedidos". The first is based on a view, and the second on a table.
I go to relations on my first block, and press ...
0
votes
5answers
68 views
Java relation between two fields
I have two fields in java class, both are Integers:
int a = 0;
int b = a * a;
Once the field a receives another value, 10, for example. But it hasn't any influence on field b, this field remains ...
0
votes
0answers
44 views
N-Ary Recursive Relations (EER)
I have studied Databases a few times throughout college but now I am faced with creating a relatively complex database with an E-ER Model required before implementation. Simple enough is the ...
1
vote
2answers
124 views
Mongoid update_attributes creating new referenced document
I'm having trouble using update_attributes with referenced documents. I've reduced my problem to a simple example that AFAICT should work, but doesn't:
class Account
include Mongoid::Document
...
0
votes
1answer
19 views
Using relations for models with namespace in Rails
How do I write relations for models with namespace?
if I have Class Foo::Bar and Class Employee and I want to have habtm between them would I write
Class Foo::Bar
has_and_belongs_to_many :employees
...
0
votes
1answer
73 views
How to avoid dependency with entities from different bundles
I have several bundles in my app and I would like to have relations between tables.
One is my User(StoreOwner) which is in UserBundle, and the second is Store in StoreBundle.
The relation between ...
0
votes
0answers
31 views
display in gridviews datas from another models
on my sidetails model
public function relations() {
// NOTE: you may need to adjust the relation name and the related
// class name for the relations automatically generated below.
...
2
votes
2answers
74 views
cake php contain in contain
I'm using CakePHP for my project...
To speed up my code I only want to get some types of models which are related to my actual object:
$result = $this->Category->find(
'first',
...
0
votes
1answer
97 views
Yii relations result non-existing items (cache issue?)
I have set relations: 'teamDrivers' => array(self::HAS_MANY, 'TeamDriver', 'team_id') in my Team model
So if I want I can: print_r($this->teamDrivers); in my Team. Just for demonstration.
Now ...
0
votes
1answer
92 views
build a specific relation of models YII activerecord
I'm trying to display Vehicle model using CGridView.
in order to display value of Fld7465RRef reference column, following sql select is needed
select VUF._Fld7468_S as Loading_Time_To_DLR
FROM ...
-1
votes
2answers
47 views
Implement several order relations for one class? [closed]
I'd like to know, which is the best way to implement several order relations for only one class ?
I have an idea with the Strategy Pattern but I'm not sure that's a good idea. And if there is not a ...
0
votes
0answers
59 views
DataSet Relations Issue
I have got 3 tables within a dataset
Discounts
DiscountTypes
DiscountRequests
They are connected via relations with DiscountTypes and DiscountRequests being a parent of Discounts.
The designer ...
0
votes
1answer
46 views
upgrading tables with autoincrement fields and relations
I have got 2 tables. Headers with names and details with texts:
create table Headers (_id integer primary key autoincrement, name string);
create table Details (_id integer primary key autoincrement, ...
0
votes
1answer
59 views
FOSUserBundle - persisting related entities/documents
I have an app where each User has a "Home".
I have overridden my FOSUserBundle registration FormType to embed the Home and capture some properties in the registration process. Unfortunately when I ...
1
vote
1answer
383 views
How to connect two tables with one form in Yii
I recently was introduced into the Yii Framework and am presently developing a web application system for my company. However I noticed that when creating the model in order to give the connection to ...
0
votes
1answer
53 views
Rails Relations
so, here's my problem, I've 3 tables:
profiles, users, payment_details
Now, in models/user.rb I've the following:
has_one :profile, :dependent => :destroy
has_one :payment_detail, :dependent ...
0
votes
0answers
66 views
Right Importer/Database Schema to store OSM nodes and relations (intersections)?
I'm looking to develop an application that requires a database of nodes and relations (intersections) of roads in an area. I don't need to specifically pick out the roads within a map segment, however ...
2
votes
2answers
547 views
Yii CActiveDataProvider Many to Many
I have a YII problem.
I do not understand, how to implement a many to many relation in CActiveDataProvider.
At first the situation.
I have one Model "Company" with following relations:
return ...
4
votes
1answer
996 views
Using EntityRepository::findBy() with Many-To-Many relations will lead to a E_NOTICE in Doctrine
For a Symfony2 project I had to create a relationship between a blog post and so called platforms.
A platform defines a specific filter based on the domain you use to view the site.
For example: If ...
2
votes
1answer
183 views
How to order related propel model in symfony2 form
I am using symfony2 form along with propel. I am having trouble on how to order the related entity from propel's model.
The abstracted code below, is taken from ...
3
votes
3answers
309 views
retrieving a sum of two columns from two related models in yii
I'm fairly new working with yii but have plenty of experience with php and sql.
I'm hoping that someone more experienced with yii can point me in the right direction. I have two models, Project and ...
0
votes
1answer
88 views
Inverting the data structure using backbone relational
I'm using backbone-relational to write an app using nested data. The top level of the data structure contains most of the data (in terms of MB) but is never used as a standalone item; it's only used ...
0
votes
1answer
64 views
Update table with FK column values from related table
Hibernate entities used.
There are Address and Room entities and apropriate tables in DB.
Address can have multiple Rooms.
Both tables have address_Id and customerEmailAddress
These columns are FK in ...
1
vote
1answer
213 views
Yii: how to sort and search in a CGridView column with a two-level 1-N relation?
This question directly follow this other
I have this tables: Groups, Users, Reports
Relations:
Groups 1 -> N Users ** and ** Users 1 -> N Reports
I already have this relation In Report model:
...
0
votes
1answer
26 views
Are relations same as table?
I am taking database course and came across the term relation. Are relations same as tables and can be used interchangeably? Thanks
0
votes
1answer
170 views
Recursive Yii queries
I'm fairly new to Yii and have run into a barrier with related models. I suspect other beginners also run into this from time to time and would be grateful for any input even if just to point me in ...


