• 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

How to update child table data using parent reference in eclipselink?

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
private Integer space;

@OneToMany(mappedBy = "userid",cascade = CascadeType.PERSIST)
private Collection<Externalstoragecredentials> externalstoragecredentialsCollection;

this is parent entity

@JoinColumn(name = "userid", referencedColumnName = "id")
@ManyToOne(cascade = CascadeType.PERSIST)
private Dpatchuser userid;

this is child entity

can you give named query to update child table data.

reply
    Bookmark Topic Watch Topic
  • New Topic