-->
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: Saving array of objects
PostPosted: Mon Jun 18, 2007 9:41 am 
Beginner
Beginner

Joined: Tue May 08, 2007 8:26 am
Posts: 21
Hello I have a short question.

Is it possible to save an array containing the same objects?

example:

Code:
function void addUsers( User[] retrievedUsers)
{
        //init code()

        session.save( retrievedUsers);

        //exit code()
}


instead of

Code:
function void addUsers( User[] retrievedUsers)
{
        //init code()

        for( int i = 0; i < retrievedUsers.length; i++)
        {
                session.save( retrievedUsers[i]);
        }

        //exit code()
}


When I do that now (done some other tests as well) I get an error that it does not regonize it
Is there any way to make this work ?
thanks


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jun 26, 2007 4:32 pm 
Newbie

Joined: Tue Jun 26, 2007 3:24 pm
Posts: 11
I would use saveOrUpdateAll


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.