Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
3k 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 ...
4
votes
4answers
201 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 ...
3
votes
2answers
822 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 ...
3
votes
4answers
16k 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 ...
2
votes
1answer
206 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 ...
2
votes
1answer
798 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
2k 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 ...
1
vote
0answers
108 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
2answers
559 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
2answers
116 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
210 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
4answers
666 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
1answer
860 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
192 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 ...
1
vote
1answer
218 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
4answers
6k 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). ...
0
votes
1answer
54 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
19 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
0answers
74 views

Problem Eclipselink Remove and OneToOne

I have a problem deleting an entity. I have the following code: @Entity @Table(name="APPRETURNVALUE") public class AppReturnValue implements Serializable { @Id ...
0
votes
1answer
59 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
125 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
0answers
394 views

JPA: OneToOne bidirectional relation

Assume there are two entities with OneToOne relation: @Entity public class A { private long code; private B b; @Id @GeneratedValue(strategy=GenerationType.AUTO) public long ...
0
votes
1answer
416 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
140 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
40 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
2answers
354 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 ...
0
votes
3answers
395 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, ...