A relation on sets S1, S2, ..., SN is any subset of S1 x S2 x ... x SN, where 'x' denotes the Cartesian product. In other words, a relation over N sets is any set of ordered N-tuples over the N sets.
0
votes
1answer
608 views
Doctrine ORM Conditional Association
i'm building a Q&A site and my questions, answers and comments are on the same posts table. But their postType is different. I can get answers for a question and comments for an answer with this ...
1
vote
1answer
283 views
Relation between models with composite keys
I have two models with composite keys:
class ContestUser(models.Model):
user_id = models.IntegerField(primary_key = True)
contest_id = models.IntegerField(primary_key = True)
username = ...
0
votes
2answers
508 views
Django generic relation problem
I'm having problems coming up with a filter in one of my views. I'm creating a site with blog entries, news articles, and reviews. The entries and articles have generic relations with the reviews, ...
0
votes
1answer
105 views
help to identify relation between database entites (for hibernate mapping)
I have a web app in which I use hibernate and deploy on tomcat using ant .I have created a hibernate.cfg.xml in source directory with all mapping values .
My app has a ShoppingCart ,CartItem and ...
4
votes
2answers
3k views
Define a custom ordering criteria in the relations() method in Yii
I have a model A that has a relationship of type HAS_MANY with model B.
B's attributes:
id,
user_id,
message,
date,
parent_message_id
I need elements of model B to be ordered by date (descending) ...
2
votes
3answers
176 views
SQL: Order results by (optional) relationship
I have two tables Post (id, ..., creationdate) and Post_Has_Post(parent_id, child_id).
Some Posts can be part of a parent<->child relation and have a corresponding entry in the ...
2
votes
2answers
145 views
PostgreSQL Hierarchical Relationship Functions
CREATE TABLE sectors
(
sector_id integer PRIMARY KEY,
sector_name varchar(100) NOT NULL,
parent_sector_id integer REFERENCES sectors(sector_id)
);
INSERT INTO sectors(sector_id, ...
2
votes
2answers
2k views
Intersection of two relations
Say I have two relations that hold records in the same model, such as:
@companies1 = Company.where(...)
@companies2 = Company.where(...)
How can I find the intersection of these two relations, i.e. ...
1
vote
2answers
2k views
MANY_MANY relation does not work for me
I am now discovering the Yii framework and doing it by trying to develop a simple application which allows to create Leagues and assign Players to it. The relationship between these is many to many (a ...
0
votes
1answer
203 views
Using 1:n relations in django admin
I want to build a questionary in Django and use django's admin-interface to enter the data.
The site-admin should be able to set-up new questionaries with questions. Define models which questions have ...
1
vote
1answer
564 views
typed dataset, cascade delete of child table records
I have a typed dataset with two tables like this:
Table A (Parent Table)
ID MessageID
1 1
2 1
3 2
4 3
Table B (Child Table)
ID MessageID
1 1
2 2
3 3
I have ...
0
votes
3answers
54 views
SQL - how to keep track of “simple relations”
I hope somebody can edit my title to better describe what I mean, because I don't know exactly what this would be called. However, consider this setup: I want to create a notification system, where a ...
0
votes
2answers
2k views
Lossless Join Property
Can someone please explain to me what is meant by the lossless join property in a relation schema?
Is it the ability to maintain the semantics of information/data during the decomposition of ...
2
votes
1answer
1k views
SQL -> Relational Algebra
Suppose I have the following relations:
Branch (branchNo(PK), street, city, postcode)
Staff (staffNo(PK), fName, lName, sex, branchNo(FK))
Not that it matters for this question, but PK = primary ...
11
votes
4answers
3k views
AirPlay support, MPMoviePlayerController and MPVolumeView relation
I am developing an iPhone application that has support for video play. I am using MPMoviePlayerController with custom controls for playing the video. For this purpose I have set control style of ...
3
votes
1answer
2k views
Compute canonical cover using armstrong's axioms
question:Determine the canonical cover using Armstrong’s Axioms. Give the axioms that you use to arrive at each step.
R = (A, B, C, D, E, F)
Fdependencies = {A -> B, A -> C, CD -> E, CD -> F, B -> ...
2
votes
1answer
606 views
association data in rails model scope
I have a model named Post (blog post) and a model named Category. Each post belongs_to a category. Each category has an attribute named retainer that specifies the amount of time before a post ...
1
vote
1answer
827 views
symfony many to many in embedded form
I have a problem with embbed form from Model which has many to many relation. The embedded form will save the model correctly but will not save many to many relations.
Example:
Schema.yml:
Mother:
...
0
votes
1answer
681 views
In Magento, Problem with category<->product relations
I have this problem with magento 1.4.1.1, when I delete a product it won't decrease the amount of products in the category tree view. I found out that magento is not deleting the entry from the ...
0
votes
1answer
106 views
Solution to Recursive Relations with Arrays
from Mexico. The truth is almost never asked or open new issues, because really the forum and not only this, if not to work instead of the network, you can find plenty of information about topic x or ...
1
vote
1answer
471 views
Database indexing: Example
I have an exam soon and I want to know how to solve these questions about indexing:
1.A database consist of a relation R(A,B,C). A and B are integers [0,10 000] (4B each) and C is a varchar(20) ...
2
votes
2answers
62 views
Optimal databasesystem for filters
I am building a website that implements filters that can be applied to a dataset. Allow me to explain these filters. In this case it will be a website with houses.
Number of rooms:
2 or less ( ...
0
votes
1answer
2k views
YAML Mapping exception on Doctrine 2
I created my database and tables using phpMyAdmin. I setup the relations there aswell.
I then wanted to get Doctrine 2 to create the YAML files for me by do this command:
php doctrine ...
0
votes
1answer
173 views
linq to entity save
I have a following database structure.
I have already saved Buyer in database. I have buyer id. I have to save contact information of a buyer in the database, as I save contact in the database I ...
0
votes
1answer
540 views
Display bidirectional and composition relation UML class diagram
I have two classes Event and Review.
The event has an instance object Review in it.
A review also has an object Event in it.
This means a bidirectional relationship between them (two arrows).
When ...
0
votes
3answers
297 views
MySQL relations for country region and town tables
I am trying to figure out the best method to relate country, region and town tables.
On my website I want the user to be able to just enter a town. Then optionally country and region, both of which ...
0
votes
1answer
260 views
Removing Anomalies from tables
I have this table and I am supposed to re-design it to remove all anomalies from it. I will not give the table but the dependencies.
The functional dependencies are
(Product, Store) -> Dept
Store ...
27
votes
7answers
6k views
How to return an empty ActiveRecord relation?
If I have a scope with a lambda and it takes an argument, depending on the value of the argument, I might know that there will not be any matches, but I still want to return a relation, not an empty ...
0
votes
1answer
227 views
SQLAlchemy - difference between mapped orm.relation with backref or two orm.relation from both sides
In some project I implement user-requested mapping (at runtime) of two tables which are connected by a 1-to-n relation (one table has a ForeignKey field).
From what I get from the documentation, the ...
0
votes
2answers
147 views
Django: How to edit a gallery that is attached to a project model?
I have a 'project' model. Each project has a 'gallery' and each gallery has 'photos'.
class Project:
gallery = ForeignKey(Gallery)
class Gallery:
photos = ManyToManyField(Photo)
class Photo:
...
0
votes
1answer
163 views
Zend_Db_Table “where” for relations?
Hello all
Is Zend_Db_Table (Zend_Db_Table_*) supports where for related data that defined through $_referenceMap / $_dependentTable
As example, i have Blogs (table: blogs) and Regions (table: ...
0
votes
1answer
313 views
Groovy Map vs. Table Relations within Domain Classes - How to decribe & persist this?
In Grails/Gorm I am storing a physical site which holds objects at defined positions.
The domain class would simply be:
EXAMPLE A
SITE DC
sitename
positionmap (1: dog, 2: cat, 3:foo, 4:bar, ... ...
0
votes
1answer
330 views
Doctrine generate models - problem with relation type
I am trying generate doctrine models from yaml schema
I have schema like that:
Product:
columns:
id:
type: integer(5)
primary: true
unsigned: true
...
3
votes
1answer
444 views
Hibernate Search and Relations
I have an object called MyItemBean which can have 0 or more associated KeywordBean objects. The resulting classes look like this:
@Entity
public class MyItemBean {
...stuff...
...
1
vote
1answer
22 views
Data alignment and zero-bits relation?
Reading through a paper for the ARM Cortex-M3 CPU I found this line confusing:
The lowest 2 bits of the stack
pointers are always 0, which means
they are always word aligned
I have seen ...
1
vote
1answer
111 views
In rubyonrails, how to get the associated model class from and ActiveRecord::Relation object?
Suppose I have an model:
class Post
end
posts = Post.where(***)
puts posts.class # => ActiveRecord::Relation
Then how can I get the model class name through the variable 'posts', maybe ...
1
vote
1answer
157 views
Pylons + SQLA: One to One Relationship
Newbie question. Pylons 1 + SQLA using declarative style. New to Python.
I have a "master" class called Entity, which "child" classes must belong to for them to be valid. My link to the master class ...
0
votes
1answer
378 views
ActiveRecord::Relation cannot use named association in where clause of join
How do I use a named association in the where clause associated with a join?
class Pet < ActiveRecord::Base
belongs_to :owner
end
class Owner < ActiveRecord::Base
has_many :dogs, ...
1
vote
2answers
617 views
How to access joined table attributes in Rails3?
I am having trouble accessing the attributes of a join in Rails3.
There is two models/tables : Place and Address. One place can have many addresses (i.e. a specific street address, a "corner of" ...
1
vote
2answers
2k views
Writing a recurrence relation for a method
I have a bit of code and need to write a recurrence relation for it. The code simply calculates 2 raised to the nth power.
Any help is appreciated.
public static int two(int n) {
if (n==0) {
...
1
vote
3answers
177 views
Defining Status of data via Enum or a relation table
I have an application which has rows of data in a relation database the table needs a status which will always be either
Not Submitted, Awaiting Approval, Approved, Rejected
Now since these will ...
0
votes
1answer
536 views
How to select from database with relations?
I have database with schema on picture below and I need to select everything related to one row (one id) of [letaky]. That means the related [zamestnanci], every related [obsah] and every [knihy] in ...
0
votes
6answers
1k views
Recurrence Relation: Finding Big O
I am trying to find the big O bound for the following recurrence relation:
T(n) = T(n-1) + n^c, where c >= 1 is a constant
So I've decided to solve this by using iteration:
T(n) = T(n-1) + n^c
...
1
vote
3answers
409 views
What are the advantages of explicitly setting up relationships inside of a database
When your creating a database schema and come up with all the foreign keys. What are the advantages of explicitly defining them as such in the database?
Are there advantages?
If it's reliant MySQL ...
0
votes
1answer
151 views
Facultative relation with Doctrine ORM
How should be implemented facultative one-to-one relation in Doctrine ORM and Symfony? Suppose there are some folders represented in database. Each folder can have a default icon or some custom icon ...
0
votes
2answers
66 views
getting one to one result from one to many relationship
my situation is that i have one to many relation ,like order and orderdetails ,i need to get order which has single order details.
1
vote
3answers
1k views
Finding recurrence relations of an algorithm
I'm reading my algorithms text book, and I'm reading about recurrence relations and finding the algorithms big O complexity. I run across this line
"In the case of the merge-sort algorithm, we get ...
0
votes
1answer
290 views
When to use memberEnd and when navigableOwnedEnd in an UML class diagram?
I've download a trial of Altova UModel and am starting using UML. As a practical beginning I am modelling a personal information manager application, which includes a web bookmark managing.
A ...
0
votes
1answer
787 views
JPA map relation entity parentID
could someone help me to understand how can I define an entity with JPA mapping that has a relation with it self?
For example, my entity is CompanyDivision, divisionA contains divisionB, divisionC
...
1
vote
1answer
991 views
Rails Model Relationship: Has one but also belongs to many
I have two Models, Modela and Modelb.
Modela can only own one Modelb, but Modelb can be a part of many Modela's.
What I have right now is
class Modela < ActiveRecord::Base
has_one :modelb
end
...
