The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
4answers
6k views

Django Admin: OneToOne Relation as an Inline?

I am putting together the admin for a satchmo application. Satchmo uses OneToOne relations to extend the base Product model, and I'd like to edit it all on one page. It is possible to have a OneToOne ...
9
votes
3answers
2k views

Check if OneToOneField is None in Django

I have two models like this: class Type1Profile(models.Model): user = models.OneToOneField(User, unique=True) ... class Type2Profile(models.Model): user = models.OneToOneField(User, ...
8
votes
1answer
3k views

JPA @OneToOne with Shared ID — Can I do this Better?

I’m working with an existing schema that I’d rather not change. The schema has a one-to-one relationship between tables Person and VitalStats, where Person has a primary key and VitalStats uses the ...
4
votes
4answers
409 views

PHP Sending mass mails: One for each or one for all?

When sending mass mails with PHP, is it better to send each subscriber an e-mail (running a for loop through all the e-mail addresses) or is it better to just add all in BCC in a comma separated list ...
4
votes
4answers
24k views

Need an example of a primary-key @OneToOne mapping in Hibernate

Can somebody please give me an example of a unidirectional @OneToOne primary-key mapping in Hibernate ? I've tried numerous combinations, and so far the best thing I've gotten is this : @Entity ...
4
votes
4answers
9k views

ORM: OneToOne mapping on Non Primary-Key Join column - Book and Inventory mapped by ISBN

I have a Book model and Inventory model mapped by ISBN number, but ISBN is not the primary key in either. Books belong to Bookstores and Inventory is for a group of Bookstores(BookstoreChain). ...
3
votes
2answers
2k views

Why hibernate perform two queries for eager load a @OneToOne bidirectional association?

i have entity A that has-a B entity, and B has-a A with @OneToOne bidirectional association. Now, when i findall A records, hibernate perform two queries with a left outer join on B, something like ...
2
votes
1answer
1k views

JPA Entity Mapped as OneToOne as well as OneToMany

Consider the following JPA entity. My application instance class must always have a OneToOne reference to 4 special instances of Envelope but it also has a set of 0-infinite user defined envelopes. ...
2
votes
3answers
3k views

How do you remove rows after changing the item in a JPA OneToOne relationship?

How do you get a OneToOne item to automatically remove with JPA/Hibernate? I would expect simply setting the OneToOne item to be null in the class that contains would be smart enough to allow ...
2
votes
1answer
486 views

JPA 2.0 OneToOne Mapping Reference an Attribute

Is it possible to reference a single attribute in the referenced entity, in a OneToOne relationship Example : @Entity public class Country { @Id private Long countryId; ...
1
vote
4answers
2k views

@OneToOne annotoation problem (i think…)

im new in hibernate and JPA and i have some problems with annotations. My target is to create this table in db (PERSON_TABLE with personal-details) ID ADDRESS NAME SURNAME ...
1
vote
2answers
222 views

Is it possible to map a superclass and subclass by OneToOne relationship in Hibernate?

Is it possible to map a subclass to its superclass by OneToOne relationship base on their primary key properties in Hibernate? How can I implement this?
1
vote
2answers
1k views

Hibernate @OneToOne mapping with reverse reference and CascadeType.ALL on owner does not persist the child

We have the following entity relation ship. User is the parent entity.DistrictUserDetail is the child. @Entity @Table(name="USERS") public class User implements Serializable { @Id @Column(name="ID", ...
1
vote
3answers
46 views

JPA @OneToOne with same type

How to annotate my code to have a Person with 2 Addresses : @Entity public Person { // ... other attributes for a person @OneToOne public Address homeAddress; @OneToOne public ...
1
vote
2answers
103 views

Spring Data JPA with @OneToOne relation fails to update already persisted entity

We got this setup: A document has a list of elements and these elements are subclasses of Element, in this example Link. A Link has a @OneToOne relation to Resource. Everything worked as long as we ...
1
vote
1answer
102 views

Grails: add children to parent with AJAX

I have a simple 1:1 relationship: class MyParentDomain{ String name MyChildDomain onlyChild } class MyChildDomain{ String name } Now on a form where I want to make a new parent "Mom", there ...
1
vote
2answers
279 views

@OneToOne getting returned as ManyToOneType

I have the following POJO: public class SampleBean1 { @Id @GeneratedValue(generator = "system-uuid") @GenericGenerator(name = "system-uuid", strategy = "uuid") protected String id; ...
1
vote
0answers
34 views

2 and more UNIDIRECTIONAL relationship (onetoone)

I have a question. I have 3 entities: member, contact, fine Member to contact (one to one unidirectional) Member to fine (one to one unidirectional) In the member entity class I've declared ...
1
vote
1answer
32 views

CoolStorage can't set One-To-One relationship

The issue is that I can't understand how to make a OneToOne relation between two objects the way for the first object to have a link to the second and for the second to have a link to the first. ...
1
vote
2answers
271 views

Django Admin: How to display value of fields with list_display from two models which are in oneToOne relation?

I belive that the answer to my problem is simple, but I can't find it anywhere. Here is my predicament. I have two models: Member and MemberDetail, which are in oneToOne relation like this: class ...
1
vote
1answer
554 views

Doctrine optional OneToOne mapping

I'm trying to create a optional OneToOne mapping in Doctrine. I have a table with all cities and zip codes available (this table shouldn't be changed), and I have a table with addresses and a mapped ...
1
vote
1answer
330 views

CheckNullability of PrimaryKeyJoinColumn

I have a Entity class that has the ObjectX attribute: @OneToOne(fetch = FetchType.LAZY) @PrimaryKeyJoinColumn public ClassOfObjectX getObjectX() { return this.ObjectX; } This ObjectX can´t be null? ...
1
vote
1answer
1k views

Mapping @OneToOne with @Where clause

I am trying to map an entity as following @OneToOne(mappedBy = "localizedLabel") @JoinColumn(insertable = false, updatable = false) @WhereJoinTable(clause = "locale='en_US'") public Localization ...
1
vote
2answers
232 views

Is it possible to have a OneToOne relation to a class hierarchy persisted using JoinedBase?

I'd like one of my entities to have a one-to-one relationship with a class hierarchy. Think of it like a Strategy pattern, where each strategy needs different parameters to be persisted. I tried using ...
0
votes
2answers
70 views

Can't get class as attribute which has one-to-one relationship?

I'm new to Python/Django so forgive me if I overlooked some easy mistakes. I'm trying to use Twython and pretty much copying the code here I can't seem to get the TwitterProfile with the dot syntax ...
0
votes
1answer
1k views

JPA 2 - OneToOne cross reference

I have been struggling with this issue for a while now, and can't seem to find a solution anywhere. Maybe I have misunderstood something, but would really appreciate it if someone could clear up ...
0
votes
1answer
46 views

Mutual foo.bar and bar.foo attributes in django Models with onetooneviews

I have two classes, Foo and Bar, in a Django app (on AppEngine if that matters). There's a one to one relationship between them. class Foo(BaseModel): bar = Bar.objects.get(foo=self.id) class ...
0
votes
1answer
48 views

Is CascadeType.MERGE required for @OneToOne?

With following decoration and conditions, /** * passsalt. */ @JoinColumn(name = "PASSSALT_ID", nullable = false) @OneToOne(cascade = {CascadeType.PERSIST, CascadeType.MERGE, // ...
0
votes
1answer
354 views

@AdditionalCriteria in combination with @OneToOne gives QueryException

I'm trying to create a RESTful service. For multi tenancy I'm applying the @AdditionalCriteria annotation. However, when I join an entity using the @OneToOne annotation the following Exception is ...
0
votes
1answer
297 views

Django: find all OneToOneFields pointing to a Model

I'm writing routines to inspect an instance and find all its relations (e.g. using instance._meta.get_all_related_objects()) but I can't find a way to get relations involving a OneToOneField. For ...
0
votes
1answer
47 views

@Entity Relation between tables on different databases

I'm new on Java Enterprise and JPA (Using EclipseLink JPA 2.0 from Netbeans). I'm trying to realize a link between different @Entity classes in different projects and packages, with no success. ...
0
votes
0answers
60 views

Hibernate OneToOne query clause

I have two classes, which are linked with each other with OneToOne link: public class Husband { ... @OneToOne(cascade = {CascadeType.ALL}) @JoinColumn(name="Wife") public Wife ...
0
votes
0answers
47 views

hibernate onetomany onetoone filter

I have three entities Batch, Flow and Document. Flow has @ManyToOne(cascade = ALL, optional = false) private MaterialDocument document; which has: @Basic(optional = false) ...
0
votes
1answer
78 views

Symfony2, Doctrine OneToOne realtions

I have table (let's name it "First") with columns id, userID, moonID, typeID. And another table (let's name it "Second") where is also column "typeID" and TypeName (simple example, basicly this table ...
0
votes
4answers
635 views

Symfony2 and Doctrine, Column cannot be null with OneToOne relationships

Here is an entity (EDITED: full file content) // Eve\MoonBundle\Entity\MoonMaterial.php namespace Eve\MoonBundle\Entity; use Doctrine\ORM\Mapping as ORM; //use ...
0
votes
1answer
90 views

JPA2 structuring OneToOne and OneToMany in the same class

Could you please tell me how you I might structure the following table/classes to avoid circular references? I have the following defined in a "Bachelor" degree class: @Entity public class Bachelor { ...
0
votes
1answer
532 views

One to One Mapping between two tables in Hibernate annotations

I have two tables CREATE TABLE `cb_jobs` ( `JOB_IDENTIFIER` INT(11) NOT NULL, `CB_CREDENTIAL_TYPE_IDENTIFIER` INT(11) NOT NULL `IS_DELETED` TINYINT(1) NULL DEFAULT '0', ...
0
votes
1answer
25 views

EF4 Code First with existing DB and one to one/one to many on SAME type

After countless hours I finally managed to get the fluent api settings to map our complex existing SQL DB to POCO classes. There is one thing which I do not get to work and I am wondering if it might ...
0
votes
1answer
426 views

Django Tastypie POST request for OneToOne relation

I have recently started django-tastypie and so far loving the framework. With said that, I am getting below issue on POST for OneToOne relation to model and spent good amount of time but couldn't ...
0
votes
0answers
147 views

MySQL Workbench reverse engineering 1:1 relations

While implementing a bigger data structure, I met the following problem: Beginning with a table where each line describes (by the contents) a lets say system. I want to have an Int as the PK there. ...
0
votes
1answer
249 views

how to make one to many mapping in hibernate struts2

i am having a tables login [login_id, login name] user[username, login_id, domain_id] doamin[domain_id,domain_name] i will pass a login name. and i need to get the domain name the sql query for ...
0
votes
2answers
175 views

@OneToOne replacing entities

I have @OneToOne bidirectional relationship where parent (P) class has: @OneToOne(optional = true, mappedBy = "owner", orphanRemoval = true) @Cascade({org.hibernate.annotations.CascadeType.ALL}) on ...
0
votes
1answer
213 views

Delete OneToOne relationship

We have the following mapping: @Entity public class A { private B b; @OneToOne public B getB() { return b; } } When we delete an object of class A it must not delete the ...
0
votes
1answer
36 views

What is the significance of specifying a relationship as 'One to One' in JPA?

i created a class @Entity public class **Department** implements Serializable { @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; private String name; ...
0
votes
1answer
155 views

Initialize dependent object in simple unidirectional OneToOne mapping

I have a problem with a simple unidirectional mapping. Here are my entities: @Entity public class Account extends UUIDBase { private Profile profile; @OneToOne(cascade = CascadeType.ALL, ...
0
votes
2answers
272 views

@OneToOne relations hibernate question

I'm working in a project using Hibernate +JPA. I have this Entity class: @Entity public class CafeUser implements Serializable { @Id @GeneratedValue(strategy = GenerationType.AUTO) ...
0
votes
2answers
584 views

@OneToOne + Table-per-Concrete-Class = exception?

I'm new to Hibernate, and I can't get @OneToOne to function in our code. After much reading, I've constructed an isolates example, and thought to ask the help of the community. Suppose 3 classes: 1 ...
-1
votes
1answer
392 views

Create and populate child table from Parent table using Hibernate Annotation

I need to create a table EMPLOYEE_REMARK from a table EMPLOYEE. And need to do it with Annotation Hibernate. EMPLOYEE EMP_ID, EMP_FNAME, EMP_LNAME EMPLOYEE_REMARK EMP_REMARK_ID, EMP_ID, REMARK ...