Hi,
I've a problem with the transactions:
When I run this...
        ProduktIF p = new Produkt();
        p.setDatum(new Datum());

        try {
                broker.beginTransaction();
                broker.store(p);
                broker.abortTransaction();
        } catch (PersistenceBrokerException ex) {
                ex.printStackTrace();
        }

...there is always a new Produkt in the database.
But on an abort the db should be rolled back to the state it had before
begin(), am I right? 
So, is this a normal behaviour for PersistenceBroker?
I'm using postgresql 7.2 with jdbcdriver 7.3 and I'm using jdbcLevel 3.
I've tested the driver , and the transactions behave as I expected.

Any Ideas?
Sven

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to