Tagged Questions
0
votes
2answers
52 views
Java-EE-6: How to store a boolean in a @ManyToMany and @ManyToOne relationships?
I am working on a data model that basically consists of users and documents. Now everytime a new document is added, there should be a flag that identifies a document as "unseen" as long as the ...
0
votes
0answers
12 views
How can I achieve those relations using what modules in drupal 7?
I have the following situation and I am wondering which setup using which modules would be capable of doing this:
On the site, there will be several offers.
On the site, there will be several users. ...
2
votes
1answer
86 views
Graph: What are pros and cons of modelling bidirectional edges as two separate edges?
I am currently working on an application where we are basically building up a graph between "items".
I think there are different kinds of links between those items, but I am struggeling right now to ...
1
vote
2answers
252 views
MySQL dynamic table name relation
I have 3 MySQL tables: cars, users and visitors.
Table cars can be related to table users or table visitors. Tables users and visitors have different table structures. I would like to join all these ...
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
419 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 ...
0
votes
2answers
370 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 ...
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 ...