Package org.exolab.castor.jdo

Examples of org.exolab.castor.jdo.DbMetaInfo


        if (_dbEngine == null) {
            throw new QueryException("Could not get a persistence engine");
        }

        TransactionContext trans = ((AbstractDatabaseImpl) _database).getTransaction();
        DbMetaInfo dbInfo = trans.getConnectionInfo(_dbEngine);

        ParseTreeWalker walker = new ParseTreeWalker(_dbEngine, parseTree,
                _database.getClassLoader(), dbInfo);

        _objClass = walker.getObjClass();
View Full Code Here


     */
    public final DbMetaInfo getConnectionInfo(final LockEngine engine)
    throws PersistenceException {
        Connection conn = getConnection(engine);
        if (_dbInfo == null) {
            _dbInfo = new DbMetaInfo(conn);
        }
        return _dbInfo;
    }
View Full Code Here

    public DbMetaInfo getConnectionInfo(LockEngine engine) throws PersistenceException
    {
        Connection conn = (Connection)getConnection(engine);

        if (_dbInfo == null)
            _dbInfo = new DbMetaInfo(conn);

        return _dbInfo;
    }
View Full Code Here

TOP

Related Classes of org.exolab.castor.jdo.DbMetaInfo

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.