• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

One to one mapping without using id

 
Ranch Hand
Posts: 254
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am trying to map a one to one relationship between a table and a view. However, the view doesn't contain the primary ID of the table, just another field that is unique. The view is legacy that does some calculations based on some tables (ugh!).

Anyways, what we have is something like this (extremely simplified):


These need to be joined across the invoice_id column, but it is not declared as an identifier in Order.

We have the following hibernate mapping file(s):

When I try to retrieve it, it tries to join across the Order.id field (OrderInvoice.invoiceId = Order.id). Can it be setup to use invoiceId without adding invoiceId to a composite key in the Order mapping?

Thanks!

 
Kerry Wilson
Ranch Hand
Posts: 254
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
For better or worse we wound up with:



Ah, the joys of mapping legacy DB's with hibernate.
 
What's brown and sticky? ... a stick. Or a tiny ad.
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic