Storing objects in the database

Transactions

Signsoft intelliBO provides transaction control. Every writing database actions have to be run inside a transaction. You get a Transaction object from the PersistenceManager.

PersistenceManager.makePersistent()

To make one or more Java Data Object persistent, the PersistenceManager provides the following methods:
makePersistent (Object pc);
makePersistentAll (Object[] pcs);
makePersistentAll (Collection pcs);

These methods must be called in the context of an active transaction.