Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
386 views

JPA/Hibernate: @ManyToOne and @OneToOne relationships tagged as FetchType.LAZY and optional = false not loading lazily on em.find()?

I have the following entity (only relevant mappings shown): @Entity @Table(name = "PQs") public class PQ implements Serializable { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) ...
5
votes
2answers
1k views

How to delete/create databases in Neo4j?

Is it possible to create/delete different databases in the graph database Neo4j http://neo4j.org/ like in MySQL? Or, at least, how to delete all nodes and relationships of an existing graph to get a ...
5
votes
2answers
476 views

Ruby on rails - Reference the same model twice?

Is it possible to set up a double relationship in a Rails scaffold? For example, if I had a user model and a private message model, the pm table would need to keep track of both the sender and ...
3
votes
2answers
95 views

PHP ORMs and optimized relationship queries

I need a PHP ORM to work with relations well. Please consider code below in Zend: $persons = new Persons(); $person = $persons->find(5)->current(); echo 'Name: '.$person->fullname; $phones ...
3
votes
1answer
702 views

SQL Server 2008 - Multiple Cascading FK's - Do i need a trigger?

I have a 1..* relationship between User and Post. (one user has many posts) Post has a FK called "UserId", which maps to the "UserId" field on User table. I tried to set this FK as Cascade ...
3
votes
0answers
2k views

Hibernate: Where do insertable = false, updatable = false belong in composite primary key constellations involving foreign keys?

When implementing composite primary keys in Hibernate or other ORMs there are up to three places where to put the insertable = false, updatable = false in composite primary key constellations that use ...
3
votes
3answers
1k views

Rails accepts_nested_attributes_for child doesn't have parent set when validating

I'm trying to access my parent model in my child model when validating. I found something about an inverse property on the has_one, but my Rails 2.3.5 doesn't recognize it, so it must have never made ...
3
votes
5answers
396 views

1-n relationship

i dont get 1-n relationship. have read some aritcles but still cant figure it out. i get 1-many, 1:1 and many-to-many. but what does 1-n mean?
2
votes
1answer
65 views

Ruby on Rails 3.1: Am I setting this relationship up correctly?

I am making my first app in Ruby on Rails 3.1....Do I have these relationships setup correctly? Essentially, a student/client will be able to login and rate a teacher. A client can have many ...
2
votes
5answers
63 views

MySQL Foreign Key On Delete

I am trying to figure out relationships and deletion options. I have two tables, User and UserStaff, with a 1:n relationship from User to UserStaff (a user can have multiple staff members). When my ...
2
votes
2answers
409 views

Cross-Store weak relationship with Fetched Properties?

I would like to separate my reference data from my user data in my Core Data model to simplify future updates of my app (and because, I plan to store the database on the cloud and there is no need to ...
2
votes
1answer
45 views

Counting entries where relationship to each other is not determined

I want to count a list of entries in my database that all have specified relationships to one person, but I need to count by their relationship to each other - in other words, they are listed as sons ...
2
votes
2answers
107 views

How to model Friendship relationships

I have been trying to figure out how to do this, and even with looking at other examples, I can't get it figured out, so maybe I can get some personalized help. I've got two tables, users_status and ...
2
votes
1answer
325 views

Xcode4 Core Data Relationships

I've once again read through the Apple developer Core Data documentation and found it lacking when it comes to the graphical Xcode 4 editor when creating SQLLite entities much as I found it lacking ...
2
votes
2answers
130 views

“Virtual Relationships” in Rails

I'm trying to do a "virtual relationship" (what I call it - don't know if there's a real term for it) in Rails. Here's one that I have that is definitely working: Address belongs_to Business and ...
2
votes
1answer
571 views

EF Code First: Many-to-many and one-to-many

This is probably just because my knowledge with the EF Code First fluent API is lacking, but I'm stumped. I want to model the following: A Groups collection with Id and Name A Users collection with ...
2
votes
2answers
99 views

Specifying conditions on a relationship in Ruby on Rails

I have the following has_many :administrators, :class_name => "User", :conditions => "role_id = 4" and it works fine, but instead of using the foreign key "role_id = 4" I would prefer to ...
2
votes
1answer
139 views

Rails: capture model id in the create form for another model

I currently have three models and am trying to bring in a reference of one of the models (webpage.id) into another model (Micropost) - here is the situation: class Member < ActiveRecord::Base ...
2
votes
2answers
146 views

HABTM relationship with an array

I am a beginner with Rails 3 programming and I have one problem with creating the right model. Let's say there is an application to manage the bibliography of a book, that is manage the mapping for ...
2
votes
0answers
457 views

Rails3 + Typus: display habtm relationship as checkboxes

I'm managing my admin backend with Typus I want to add a field with a checkbox for each category. I used this code: Post: fields: default: name, description, user, categories list: name, ...
2
votes
3answers
114 views

What are methods of programmatically detecting many-to-many relationships in a RDMBS?

I'm currently busy making a Python ORM which gets all of its information from a RDBMS via introspection (I would go with XRecord if I was happy with it in other respects) — meaning, the end-user only ...
2
votes
2answers
363 views

Convert many to many to one to one (mysql)

We changed database schema and moved a relationship between users/accounts from a 1-1 to a many to many using a join table accounts_users. So we have accounts, users, accounts_users (user_id and ...
2
votes
1answer
181 views

Many-to-Many Relationship (with properties) in Google App Engine for Java

I understand from the official documentation on unowned relationships that the app must use sets of Key objects on either side of the relationship. This makes perfect sense. Coming from many years of ...
2
votes
1answer
433 views

InnoDB - Two foreign keys on the same column from one table

i have a project table which has a image_id field and a newsimage_id field. Both are linked to the image table. But InnoDB doesn't allow me to set a foreign key for both fields to the same column ...
2
votes
2answers
117 views

Simple UML behaviours baffle me!

Very new to UML and system design. We're at the stage of doing a class diagram in the design phase and are struggling to figure out how to implement a requirement. Here's the problem: We have a ...
2
votes
1answer
704 views

django recursive relationships

My DjangoApp is using categories to generate a navigation and to put stuff in those categories. There are two types of categories: ParentCategories (top categories) ChildCategories (sub categories ...
2
votes
2answers
905 views

Core Data Deletion rules and many-to-many relationships

Say you have departments and employees and each department has several employees, but each employee can also be part of several departments. So there is a many-to-many relationship between employees ...
2
votes
2answers
1k views

Implementing Unowned relationship Google App Engine

My question is more of a best practices question on how to implement unowned relationships with Google App Engine. I am using JDO to do my persistence and like recommended in the google docs I'm ...
2
votes
2answers
387 views

Linear relationships for two (x,y) graphs

I have x,y data coming in from a [coordinates1] database (GIS - but this could be any database). I have my application with it's own coordinate system, referencing THE SAME MAP. I have established ...
1
vote
0answers
28 views

Querying for a relationship in ruby on rails and update results via Ajax

I have a ROR app that has many players, and many proposed games. The games display on a feed and a player can decide to hide them from this feed. The hidden function works like this: in player.rb: ...
1
vote
1answer
28 views

Rails building multiple relationships in one form

Newbie on Ruby here, I've successfully build an html form in which users' "project" models can "follow" (or as I've phrased it "pfollow") other "plant" models. The only problem is that the code I've ...
1
vote
1answer
33 views

Doctrine Relationship on a namespaced table

I have a several doctrine models that have relationships to other models. Let's call those ItemsOne, ItemsTwo, ItemsThree. Each has a relationship defined to the Products doctrine class (products ...
1
vote
3answers
53 views

Creating Rails associations

I'm having a hard time understanding how to create the following associations: User has many photo albums Photo Album has many photos Users can follow someone else's specific photo album (and ...
1
vote
1answer
131 views

Codeigniter Datamapper Cross-Database Joins

Good morning, I am currently working on a project that utilises Codeigniter and the Datamapper Library (http://datamapper.wanwizard.eu). The project uses a central database for user data (called ...
1
vote
1answer
82 views

Find by intermediary attribute in a has_many :through in Rails [closed]

Possible Duplicate: Rails has_many :through Find by Extra Attributes in Join Model I have the following many to many setup in my model: class Project < ActiveRecord::Base has_many ...
1
vote
1answer
86 views

Joining 3 tables in Ruby on Rails 3

I am trying to extract all Posts for a given User in the bellow relationships. Not sure whether I got them right, so I'll better explain. A User has Ownerships and Memberships in some Groups. A User ...
1
vote
1answer
47 views

problem in Doctrine Two Entities with many to many relationship , cli tool reports an error when creating schema (SchemaException)

I created two Doctirne entities , which has many to many relationship together in between them. But when i trying to created the db tables from that schema , i am getting a weird exception which is a ...
1
vote
1answer
175 views

PHP MVC database relationship objects

I am trying to figure out how to model database relationships in PHP. Say for instance I have a User class and a Book class. A User has many books (one-to-many). I have seen in frameworks that you ...
1
vote
1answer
124 views

web2py, Database relationships and permissions

So i've this problem i've 2 tables for example templates(id,user_id,template_name,reference) user_settings(id,user_id,default_template) so each user can create many templates and in his settings he ...
1
vote
3answers
51 views

How do I describe a relationship like “issue has status” in Rails 3?

I am developing an "issue tracker" app in Rails 3 but I am having trouble describing the relationship between an "Issue" and its "Status". Each issue can only have one status - I'd like this to be a ...
1
vote
1answer
80 views

How can I do a zend_db_table query with the criteria involving a dependent table?

I have a table of events and a _dependentTable of eventPerformers. One event can have multiple performers. The performers are related to the events via eventId key within the eventPerformers table. ...
1
vote
2answers
67 views

Django model class that can either have one relationship or another?

To give you an idea of the problem I'm trying to solve I'll use an example. The issue is that there can be multiple possible relationships between classes, and how to represent this in the models ...
1
vote
2answers
875 views

Using CGridView for a model's association

I have a model with has_many association. Let's just say Student has many Courses. I'd like to show all courses of a particular student using CGridView. Something like this: ...
1
vote
0answers
296 views

Rails 3 and Mongoid: Can't seem to setup a one-to-many relationship

I have a User model and a Tracker model the goal is to have a user having: - one tracker that was created by this user - one referer tracker to the user On the other hand, each tracker: - belong to ...
1
vote
3answers
337 views

Core Data multiple relationships to same entity

I have a data model I'm trying to port from a SQLite based table structure to a Core Data model. My SQLite structure has a Zones table and a TransitLogs table. A TransitLog can have the ...
1
vote
2answers
123 views

Beginner Ques::How to delete records permanently in case of linked tables?

Let's say I have these 2 tables QuesType and Ques:- QuesType QuestypeID|QuesType |Active ------------------------------------ 101 |QuesType1 |True 102 |QuesType2 |True 103 ...
1
vote
1answer
133 views

relationship to a Django many to many relationship?

I'm relatively new to Django and OO, so I may be missing something obvious, but I can't wrap my head around how to model the following: I have locations. I have games. Each location can have as ...
1
vote
2answers
216 views

XML to dataset - problem finding what datarow contains a datatable

Sorry if the description is poor, but I don't know how else to put this... But here is an example of the XML structure <?xml version=”1.0” encoding=”UTF-8”> <Response ...
1
vote
3answers
49 views

modeling OR relationships?

How do you trasnlate OR relationships in ER diagrams? For example, you have 2 entities that have some connection with the third, but only one of them can have that relation?(ex. BussinessOwner or ...
1
vote
1answer
506 views

A better example of ternary relationship

In SQL you can describe a binary relation with a table like Husband | Wife We know that an husband can have only one wife, and viceversa, so that's a 1:1 relationship, and you can specify ...

1 2 3