Examples of internalFlush()


Examples of com.sun.jdo.spi.persistence.support.sqlstore.impl.PersistenceManagerImpl.internalFlush()

        // flush updates to the database if transaction is active.
        if (tx != null && tx.isActive()) {
            PersistenceManagerWrapper pmw = (PersistenceManagerWrapper)pm;
            PersistenceManagerImpl pmi =
                    (PersistenceManagerImpl)pmw.getPersistenceManager();
            pmi.internalFlush();
        }
    }

    /** Returns a ContainerHelper instance that can be used to invoke
     * the corresponding method.
View Full Code Here

Examples of com.sun.jdo.spi.persistence.support.sqlstore.impl.PersistenceManagerImpl.internalFlush()

        // flush updates to the database if transaction is active.
        if (tx != null && tx.isActive()) {
            PersistenceManagerWrapper pmw = (PersistenceManagerWrapper)pm;
            PersistenceManagerImpl pmi =
                    (PersistenceManagerImpl)pmw.getPersistenceManager();
            pmi.internalFlush();
        }
    }

    /**
     * @return true if the container had been registered correctly.
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.