Package org.odmg

Examples of org.odmg.TransactionNotInProgressException


            throw new DatabaseClosedException("Database is not open");
        }
        TransactionImpl tx = getTransaction();
        if (tx == null || !tx.isOpen())
        {
            throw new TransactionNotInProgressException("No transaction in progress, cannot delete persistent");
        }
        tx.lockAndRegister(new RuntimeObject(object, tx), Transaction.WRITE, false);
        tx.markDelete(object);
    }
View Full Code Here

TOP

Related Classes of org.odmg.TransactionNotInProgressException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.