store collections

Abid Hussain <[email protected]>
Newsgroups gmane.comp.jakarta.ojb.user
Message-ID <[email protected]>
Hi everybody,

I want to implement a method which stores not only one object but a 
collection of objects.
I tried this one:
public void storeAll(Collection valueObjects) {

	if (valueObjects != null) {
		broker.beginTransaction();
		for (Iterator i = valueObjects.iterator(); i.hasNext();)
			Object valueObject = i.next();
			broker.store(valueObject, ObjectModification.INSERT);
		}
		broker.commitTransaction();
}
...but it doesn't work, not one object is stored into the database.

Anybody got an idea?

Regards,

Abid

-- 

Abid Hussain
Mail: [email protected]
Web: http://www.abid76.de
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.