Re: Help selecting version column

2008-01-24 Thread Jeff Melching
.org Date: 01/24/2008 10:49 AM Subject: Re: Help selecting version column Hi, Why are you trying to do this? Definitely it looks like this is a bug in OpenJPA, but generally-speaking it's very cheap to pull back the rest of the rows in a given record (i.e., select a frmo AnEntity a where a.id

Re: Help selecting version column

2008-01-24 Thread Patrick Linskey
Hi, Why are you trying to do this? Definitely it looks like this is a bug in OpenJPA, but generally-speaking it's very cheap to pull back the rest of the rows in a given record (i.e., select a frmo AnEntity a where a.id = ?1). -Patrick On Jan 24, 2008 7:38 AM, Jeff Melching <[EMAIL PROTECTED]> w

Help selecting version column

2008-01-24 Thread Jeff Melching
I am trying to select only the version column of an entity to see if it was changed. If I run the following JPQL where verId is the version field of my entity: select a.verId from AnEntity a where a.id = ?1; The generated sql is: SELECT FROM AN_ENTITY t0 WHERE t0.ID = ? Obviously, this is