aspose file tools
The moose likes EJB and other Java EE Technologies and the fly likes JPA Named query returns partial Result Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » EJB and other Java EE Technologies
Reply Bookmark "JPA Named query returns partial Result" Watch "JPA Named query returns partial Result" New topic
Author

JPA Named query returns partial Result

Purna Boyapati
Greenhorn

Joined: Feb 11, 2013
Posts: 2
i have a table PhoneModels
ID, Name , Vendor
1, iphone, Apple
2, Xperia, Sony Erricson
3, Razor, Motorola



and a corresponding named query

@NamedQuery(name = "phones.findAll", query = "select o from PhoneModels o"),

but weirdly sometimes the result of the above NamedQuery returns me partial result

ID, Name , Vendor
1, <---------------------------missing name and vendor most importantly it is SPORADIC once in 1000 times and it goes of without any change in code or server
2, Xperia, Sony Erricson
3, Razor, Motorola

this is the version we use
EclipseLink, version: Eclipse Persistence Services - 2.1.2.v20101206-r8635



 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: JPA Named query returns partial Result
 
Similar Threads
EJB 3 QL : join
Need help with Mapping(Annotation) and Composition
Error in Many to Many persisting EJB3 Toplink
JPA composite key mapping
named queries can be defined only on an entity - problem