Tagged Questions
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.
8
votes
3answers
1k 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 ...
6
votes
4answers
735 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 ...
3
votes
1answer
92 views
Complex merge of data relations
Let's say that I have a set of relations that looks like this:
relations :: [(A, B)]
instance Monoid A
instance Monoid B
I want to transform this set of relations to a new set of relations of As ...
3
votes
2answers
47 views
Use own tuples in JOIN statement
is it possible use own tuples as a source for an JOIN statement?
Here is an example of what I'm looking for:
SELECT u.id, u.name FROM users u
INNER JOIN {{tupl1},{tupel2},{tupel3},...}
2
votes
3answers
85 views
MySQL query makes server crash?
In my MySQL database I have two tables: 'orders' and 'orders_lines'. Orders contains info about the customer, order date, and so on. Orders_lines contains data about the oredered products, like ...
2
votes
1answer
417 views
Yii MANY to MANY, with another column (product_id, cart_id, amount)
I'm wondering if anyone has faced this issue.
Let's assume I have two tables: products and carts (related many to many).
Now, joining table has additional column - amount (how many products of ...
2
votes
3answers
66 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
1answer
588 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
2answers
56 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 ( ...
2
votes
1answer
158 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...
...
2
votes
1answer
899 views
Starter question of declarative style SQLAlchemy relation()
I am quite new to SQLAlchemy, or even database programming, maybe my question is too simple.
Now I have two class/table:
class User(Base):
__tablename__ = 'users'
id = Column(Integer, ...
2
votes
1answer
121 views
Django: Retrieve active threads by the time the last Post was created
Hallo people,
I have two Models, Thread and Post, where one Thread can have many Posts. I want to retrieve the active threads by sorting by 'post_set.createtime'. In the end, I want to get exactly ...
2
votes
4answers
787 views
Get Table2 data from a relation to Table1 in C# Code
I have two tables in a DataSet where the ID field on each is the same. I have a Relation between the two tables. How do I, in C# code, pull the info from Table2 that relates to the info on Table1?
I ...
1
vote
1answer
23 views
Use of M2M Table and relationship to get specific data in sqlalchemy
I have Table
# File : MyRelations.py
ACC_ADD_TABLE = Table('acc_add_rel', METADATA,
Column('acc_id', ForeignKey('acc.id'),
nullable=False),
Column('add_id', ...
1
vote
1answer
52 views
How to query and represent relationships between objects/hashes in Redis
Let us suppose I have an app which has articles and authors. It persists its data in a Redis base. The articles are stored as hashes, as the one below represented in JSON syntax:
{ "title" : "My ...
1
vote
1answer
23 views
How do I print out the relations with linq from table GroupUser
I have two tables, one called Users and one called Groups. I also have one relationship table called GroupUsers with PK from Groups and Users.
I can add user 1 with group 2 with:
var group = ...
1
vote
1answer
94 views
JPA OneToMany relation not automatically populated?
I have a simple OneToMany relation between Task and TaskError.
Task maps the TaskErrors:
@OneToMany(cascade = CascadeType.ALL, mappedBy = "task", orphanRemoval = true)
private List<TaskError> ...
1
vote
2answers
59 views
sql alchemy filter results on properties of joined models
I have a model X and a model Y.
Y contains a foreign key reference to X.id, with a instance of the related X entry available by the property x.
x_id = Column(Integer, ForeignKey('xtable.id'))
...
1
vote
0answers
206 views
Recurrence For Running Time Of A Recursive Insertion Sort. Need Help?
Currently, I was assigned to write a recursive version of the insertion sort algorithm. And I did that. In fact, here is that:
void recursiveInsertionSort(int* inputArray, int p, int q)
{
while (q ...
1
vote
2answers
71 views
setting the correct jpa mapping for shopping cart items and product
I am learning jpa through some examples ,involving a shopping cart and cart items.I defined them as below..but am not very sure about which mapping to use
@Entity
class Product{
private Long id;
...
1
vote
1answer
185 views
In glsl, what is the formula used to compute gl_fragCoord from gl_position?
Please correct me if I'm wrong.
When using vertex and pixel shaders, we usually provide the code to compute the output gl_position of the vertex shader.
Then, we find ouselves with the input ...
1
vote
1answer
78 views
Correlation between the gain and the activity level of a microphone object in flash/flex
The microphone's gain property is default at 50 and ranges from 0 to 100, It boosts the signal from the microphone.
The microphone activityLevel property also ranges from 0 to 100, and describes the ...
1
vote
4answers
31 views
Django model a pair
i am currently playing with django and i want to model a simple relation: two members of a dance-club should be paired as a dancing couple in order to participate in a dancing-tournament. I already ...
1
vote
1answer
64 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 = ...
1
vote
2answers
57 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, ...
1
vote
1answer
196 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
679 views
Yii 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 ...
1
vote
1answer
189 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 ...
1
vote
1answer
391 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 ...
1
vote
1answer
220 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
465 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:
...
1
vote
1answer
189 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) ...
1
vote
1answer
17 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
86 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
138 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 ...
1
vote
2answers
350 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
3answers
96 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 ...
1
vote
3answers
205 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 ...
1
vote
3answers
617 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 ...
1
vote
1answer
358 views
sqlalchemy relation through another (declarative)
Is anyone familiar with ActiveRecord's "has_many :through" relations for models? I'm not really a Rails guy, but that's basically what I'm trying to do.
As a contrived example consider Projects, ...
1
vote
1answer
211 views
Django - ManyToOne relation to a child class
Is there a way to declare this case so that it works? I hope the code is self-explanatory.
class A(Model):
many_to_one = models.ForeignKey(B)
(...)
class B(A):
(...)
1
vote
2answers
279 views
Objective-C : Relationship to own class (CoreData)
In my project there is a managed object called "Group".
This object itself can contain child group objects.
How do I solve this situation in CoreData and in the FetchedResultsController?
My first ...
1
vote
1answer
139 views
Integer Relation Implementation (finding ratio between real numbers)
Can anyone point me to a library or module with a decent integer relation implementation (most likely PSLQ)?
My target platform is .NET (C#), but if there's source code in C/C++, Java, whatever, even ...
1
vote
2answers
642 views
Problem with updating entity relation using stub entities
EDIT: Stub Entities Definition
I have two entity types Subscriber and AddOn
Their definition in data model is as below
Subscriber(#SubscriberID,Name,AddOnID)
AddOn(#AddOnID,Name)
AddOnID column ...
0
votes
0answers
15 views
Why can we figure out the relationship between a point and a plane by a matrix's determinant? [migrated]
A plane can be taken to be a quadruple(a, b, c, d). Then a point is taken to be a triple of planes(P, Q, R). The point(p, q, r) is valid if and only if the following determinant is non-zero.
|Pa Pb ...
0
votes
2answers
91 views
How to customize error message on Symfony2
I'm trying to use DQL to create a query between a ManyToMany relation, here a snippet of my code:
$em = $this->getDoctrine()->getEntityManager();
$query = $em->createQuery("SELECT * FROM ...
0
votes
2answers
38 views
NoSQL, DBRefs : MongoDB
How can I create a DBRef according to a given field by myself? For example, I have the UID field in the customer table, and I also have this UID field in the orders table, which will serve to ...
0
votes
1answer
88 views
using onDelete with Doctrine 2
I can't get the onDelete to work in Doctrine2 (with YAML Mapping).
I tried this relation in my Product class:
oneToOne:
category:
targetEntity: Category
onDelete: CASCADE
But that ...
0
votes
1answer
26 views
Functional Dependency Trivial
If you have something on the LHS and RHS is it considered trivial if that's the only symbol on the RHS? For example:
ABC -> C
Could you break it down like this:
C -> C
A -> {}
B -> {}
...
0
votes
3answers
23 views
Delete entry without deleting related entries mysql innoDB
I have a database where the users have different projects. A user can have multiple projects but a project can have only one user.
I get a problem if i'm going to delete a user without deleting his ...