I didn't entirely follow your question. Cayenne only sends changes
for the fields that changed. If you have an object with 50 attributes
and one of them is firstName and you only change the first name, then
only the firstName column is sent in the SET portion of the SQL.
UPDATE xyz SET firstName = 'new first name' WHERE ...
If you changed firstName and lastName, it would be:
UPDATE xyz SET firstName = 'new first name', lastName = 'new last
name' WHERE ...
Cayenne won't send all 50 attributes over in the SET clause unless all
50 change. Cayenne is smart enough to know which attributes changed
and only send those.
mrg
On Mon, Nov 22, 2010 at 6:00 AM, Bruno Ren� Santos <brunoren..olos.pt> wrote:
> I was seeing the documentation about optimistic locking on Cayenne and this
> phrase:
>
>
>
> Cayenne is also smart enough to know which values have changed (only firstName)
> and doesn't update the unchanged values.
>
>
>
> Got me thinking... Does this means that if I change other fields (besides
> firstName)on this records they get changed? My wish was not to change anything
> on the record until all fields are consistent.
>
>
>
> Thanx
>
> Bruno
>
>
>
> --
>
>
>
> Bruno Ren� Santos | Gestor de Projectos - Project Manager |
> <mailto:brunoren..olos.pt> brunorene@holos.pt | �<http://www.holos.pt>
> http://www.holos.pt
>
>
>
> Holos - Solu��es Avan�adas em Tecnologias de Informa��o S.A.
>
> Parque de Ci�ncia e Tecnologia de Almada/Set�bal . Edif�cio Madan Parque
>
> Rua dos Inventores . Quinta da Torre . 2825 - 182 Caparica
>
> Phone: +351 210 438 686 . Fax: +351 210 438 687
>
>
>
> This email and any files transmitted with it are confidential and intended
> solely for the use of the individual or entity to whom they are addressed. If
> you are not the intended recipient or the person responsible for delivering the
> email to the intended recipient, be advised that you have received this email in
> error and that any use, dissemination, forwarding, printing, or copying of this
> email is strictly prohibited. If you have received this email in error please
> notify Bruno Ren� Santos by telephone on +351 210 438 686
>
>
>
>
This archive was generated by hypermail 2.0.0 : Mon Nov 22 2010 - 15:18:52 UTC