-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: Sofortiger Lock beim Auslesen
PostPosted: Wed Oct 20, 2010 6:31 am 
Newbie

Joined: Wed Oct 20, 2010 6:17 am
Posts: 4
Hallo,

ich möchste während/ SOFORT nach dem Auslesen eines Datensatzes das entsprechende Objekt in der Datenbank sperren.
Ich habe nur die Lösung über
Code:
session.lock(object, lockMode)

gefunden. Leider ist das nicht mit meinem Designansatz kompatibel, da ich über Logiken lese.

Am liebsten wäre mir ein Vorgehen wie z.B. dieses:
Code:
ArticleLogic al = new ArticleLogic();
al.setFilter(ArticleLogic.FILTER_SERIAL_NUMBER, "123456");
al.setFilter(ArticleLogic.FILTER_LOCK, true);

Article tempArticle = al.unique();

tempArticle.setStatus("reserved");

session.update(tempArticle);


Wünschenswert wäre ein SQL wie folgt:

SELECT * FROM article WITH (UPDLOCK) WHERE serial_number = '123456'

Der Datensatz sollte SOFORT gegen updates geschützt werden.

Ich hoffe jemand versteht was ich möchte und kann mir helfen.

Vielen Dank.


Top
 Profile  
 
 Post subject: Re: Sofortiger Lock beim Auslesen
PostPosted: Thu Oct 21, 2010 3:24 am 
Newbie

Joined: Wed Oct 20, 2010 6:17 am
Posts: 4
Hallo,

ich habe eine Lösung gefunden, siehe englischer Thread: https://forum.hibernate.org/viewtopic.php?f=1&t=1007674


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.