Package org.exolab.castor.jdo.engine

Examples of org.exolab.castor.jdo.engine.LocalDatabaseImpl


                    _logInterceptor.exception(ex);
                }
            }
        }
       
        return new LocalDatabaseImpl(_dbName, _lockTimeout, _callback,
                _instanceFactory, _classLoader, _autoStore);
    }
View Full Code Here


            throw new DatabaseNotFoundException(msg, ex);
        }
       
        if (transactionManager instanceof LocalTransactionManager) {
            // We are in LOCAL mode and need only to return a new database instance.
            return new LocalDatabaseImpl(_databaseName, _lockTimeout,
                    _callbackInterceptor, _instanceFactory, _classLoader, _autoStore);
        }
        // We are in J2EE mode and need a valid Transaction.
        Transaction tx = null;
        int status = -1;
View Full Code Here

TOP

Related Classes of org.exolab.castor.jdo.engine.LocalDatabaseImpl

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.