-->
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.  [ 1 post ] 
Author Message
 Post subject: einzeln Speichern
PostPosted: Thu Aug 30, 2012 5:27 am 
Newbie

Joined: Thu Aug 30, 2012 5:24 am
Posts: 1
Hallo

Ich arbeite z.Z. mit Hibernate 3.6 in Java.

Code:
public void TestSave()
{
    final Artikel artikel = createArtikel("Monitor", 150.00);
    final Artikel artikel2 = createArtikel("Stuhl", 15.00);

    this.session.getTransaction().begin();

    this.session.saveOrUpdate(artikel);
    this.session.saveOrUpdate(artikel2);

    this.session.getTransaction().commit();

    ReloadSession(); //Startet die Session neu. Ist getestet, funktioniert ohne Probleme

    final Artikel NeuArtikel = (Artikel) this.session.createCriteria(Artikel.class).add(Restrictions.eq("name", "Monitor")).uniqueResult();
    final Artikel NeuArtikel2 = (Artikel) this.session.createCriteria(Artikel.class).add(Restrictions.eq("name", "Stuhl")).uniqueResult();
           
    NeuArtikel.setName("MonitorNeu");
    NeuArtikel2.setName("StuhlNeu");

    this.session.getTransaction().begin();

    this.session.saveOrUpdate(NeuArtikel);

    this.session.getTransaction().commit();
}

private Artikel createArtikel(final String name, final double preis) {
       
    final Artikel artikel = new Artikel();
    artikel.setName(name);
    artikel.setPreis(preis);
       
    return artikel;
}


wie zu sehen ist lege ich 2 Artikel an und speichere diese in der Datenbank. Anschließend wird die Session neugestartet und die Artikel neu aus der Datenbank geladen. Wenn ich die Namen beider Artikel ändere, aber nur den ERSTEN speichere, sind dennoch beide in der Datenbank geändert.

Wie ist es möglich die Objekte einzeln zu speichern, ohne gleich alle Objekte die an der Session hängen mitzuspeichern?

mfg Gamer


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

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.