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.
3
votes
1answer
200 views
How should I map relationships between multiple inheritance models?
I have an Eentity Framework model with a Table Per Hierarchy (Brand) and also a Table Per Type (Vehicle) inheritance like this:
(Vehicle and Brand are abstract classes).
So far so good, I can ...
0
votes
0answers
81 views
hibernate update
I have 3 tables. A,B,C.
C is parent of A.
B is parent of A.
I am inserting successfully data in DB when click on save button.
while saving , I am saving only C entity like ,
if(somecondition){
...
0
votes
1answer
2k views
How to display the master-detail tables into two xtragrid?
I have to tables:users and messages.And create the one-many relations between these tables.And,If I display this two table in single xtragrid, it's no problem,But ,I want to display into two grid,the ...
1
vote
1answer
200 views
Finite-state transducer that computes the relation
From http://www.cse.ohio-state.edu/~gurari/theory-bk/theory-bk-twoli1.html#30007-23021r2.2.4:
Let M = <Q, Σ, Δ, δ, q0, F> be the deterministic finite-state transducer whose ...
0
votes
2answers
275 views
if current_user.id = @game.user_id
I have links to the show pages for each game in my project and if the
games user_id matches the id of the currently signed in user then I want
it to display the edit button if they are not then it ...
0
votes
1answer
304 views
Cakephp: How to query over 2 tables without a join
I am on my Model named "Objekt" and it has this relations:
var ??? = array(
'ObjektArtenInternet' => array(
'className' => 'ObjektArtenInternet',
'foreignKey' ...
1
vote
2answers
258 views
1:n relationship and sql query
I have two tables
entries(id,name,desc,cat_id)
and
categories(id,name,parent)
entries.cat_id and categories.id are FK and between entries and categories there is a 1:n relationship. So how to get ...
1
vote
5answers
270 views
finding min and maximum in a daughter file and relating that result to the parent file
I have an input file like below.
element materl(local)
ipt-shl stress sig-xx sig-yy sig-zz sig-xy sig-yz sig-zx plastic
state ...
1
vote
2answers
73 views
Setup a relation from one model to another, using multiple associations
I'd like to know how to setup a relation from one model to another, but through multiple associations.
In this example there is a Member model, a Sportsorginazation model, a Basketballclub model and ...
0
votes
1answer
87 views
Rails one-to-many relation , result is null
I have a simple database that has the following relation
Each Question has one Questiontype (3 different typs , such as Questiontype1 , Questiontype2 , Questiontype3 )
in Questiontype has ...
2
votes
1answer
199 views
JPA - unique bi-directional entity relationship
I want to make relations between my "Tag" entity. The relationships are bi-directional and are stored in my entity "TagRelation":
Each tag relation should only have 1 entry in the tag_relations ...
5
votes
1answer
1k views
Django Haystack: filter query based on multiple items in a list.
I have Event model instances that can belong to one or more Organization model instances. I've implemented haystack 2.0.0 to index all of my Events. Here is an example search index.
class ...
2
votes
1answer
81 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', ...
3
votes
1answer
120 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 ...
0
votes
2answers
244 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 ...
1
vote
2answers
1k 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 ...
1
vote
1answer
423 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
1k 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 ...
1
vote
1answer
54 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 = ...
0
votes
1answer
336 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 -> {}
...
1
vote
1answer
2k 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> ...
0
votes
3answers
59 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 ...
0
votes
1answer
101 views
ruby on rails, how to implement relations
I'm stuck with this application )
I have 3 models - User, Photo and Like
Users will log in, view photos and mark them "like" or "dislike".
Here's my DB schema, insignificant fields skipped for ...
0
votes
1answer
124 views
DB objects relations visualization
I'm not guru in DBA, so I'll try explain what I want in terms I imagine it.
I have Oracle DB with network devices. each device has ports which has parent device/port
I want some tool which will ...
1
vote
2answers
3k views
Candidate Key Identification with Functional Dependencies
I'm having trouble understanding how to identify keys in functional dependencies. I've been looking at examples, for example:
Given a relation ABCD, find all keys not including superkeys of the
A ...
2
votes
1answer
501 views
BCNF/3NF in Relational Databases
How do you tell if a relation R is in BCNF and 3NF?
I'm reading a textbook, and it's telling me that there are 3 main attributes you're looking at, but I'm having trouble understanding what they're ...
1
vote
2answers
236 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'))
...
0
votes
1answer
413 views
Hibernate does not find persistent set
I'm reading from a database using Hibernate. I am not too familiar with it, so maybe the answer is simple:
I use the following simple code:
public static void main(String[] args) {
CourseHelper ...
5
votes
3answers
3k views
Implementing one-to-zero-or-one relation in SQL Server
I'm using Entity Framework 4.1 database first approach. I've used legacy database. In my edmx file which create entity classes based on tables in the legacy database, there is a one-to-zero-or-one ...
0
votes
3answers
61 views
Better way to return the value from a property from a child object when the childobject can be null
I try to explain this with an example:
public class Player
{
public string FirstName {get; set;}
public Team Team {get; set;}
}
public class Team
{
public string Name {get; set;}
}
Now ...
0
votes
2answers
385 views
CakePHP - How do I link these models together (that requires use of a relation table)?
I'm currently using CakePHP 2.0-RC1. Being pretty nifty and all, I've only come across one challenge that I can't wrap my mind around. I've read the documentation on linking models together ...
0
votes
1answer
435 views
DataSet Relation over Multiple columns
I'm having a hard time setting relation between my tables in my dataset. I got 2 repeaters (nested). RepeaterReplies is the outer repeater. Here is where I bind it and set the relation.
Here is what ...
2
votes
0answers
1k 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
234 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;
...
2
votes
3answers
323 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 ...
0
votes
1answer
303 views
Hibernate 3.6.7: Problem with @ANY and Foreign-Key
I have the entities "User" and "Customer":
@Entity
@Table(name = "USR_USER")
public class User extends PersistentObject {
[...]
@Any(metaColumn = @Column(name = "USR_OWNERTYPE"))
...
0
votes
1answer
312 views
How to configure AutoMapper to flatten a 1:n relation?
Consider two entity classes CD and Track:
public class CD
{
public long Id {get; set;}
public string Name {get; set;}
public IList<Track> Tracks {get; set;}
}
public class Track
{
...
1
vote
1answer
1k 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 ...
0
votes
2answers
77 views
Symfony relation with prefix
I'm struggling with the connection/relation from the main class/table to a related class in symfony 1.4 with doctrine. The relation is
$relatedClass->identifier == 'e'.$mainClass->id;
I know ...
3
votes
2answers
75 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},...}
1
vote
1answer
253 views
Xml Schema: How to define a key / keyref for different elements in same group?
I have this part of my xsd:
<!-- FIELDGROUP - groups all available field types -->
<xsd:group name="FieldGroup">
<xsd:choice id="fieldset-fields">
<xsd:element ...
1
vote
1answer
423 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 ...
0
votes
1answer
121 views
Looking to combine two queries
I am trying to combine two queries into one and I hope you can help me.
The query gets me list of entries (zip codes) that are within a certain distance. That works just fine. ($lat, $lng, $zip and ...
1
vote
4answers
81 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 ...
0
votes
1answer
440 views
django manytomany relation : 'tuple' object has no attribute 'all'
I'v got problem with 'self' manytomany relation in Django:
My models :
class EcomProduct(models.Model):
products = models.ManyToManyField('self', through='EcomProductToProduct', ...
0
votes
2answers
2k views
Doctrine Class “..\..” has no association named “…”
I hope you can help me with this problem because I really cannot see what is wrong here.
I have 2 entities: RokZaPrijavuProjekta AND Predmet.
RokZaPrijavuProjekta:
/**
* ...
0
votes
2answers
372 views
How to find sqlalchemy remote side object's class or class name without db queries?
Let's have a classes X and Y and relations between them x2y and y2x.
From class_mapper(Class).iterate_properties iterator we can get all class's properties.
So x2y and y2x are RelationshipProperty ...
-2
votes
1answer
173 views
Django Associations with the user model
How can I associate lists apps Listing model with an user. User has_many lists.
What shall I include in my List model for being able to use models.ForeignKey(User)
3
votes
1answer
2k views
Many to Many, with another column
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 ...
0
votes
1answer
1k views
JPA Relation or Secondary Table
Hi I am reengineering one of my project with JPA which was initially on iBatis.
public class Entity{
//ids and other stuff
String locale;
String text;
}
I was storing locale and text ...
