Package nexj.core.meta.persistence.sql

Examples of nexj.core.meta.persistence.sql.SQLObject


      }

      // ensure all SQLObjects in DataSource exist after rolling forward through the upgrades
      for (Iterator itr = m_schema.getObjectIterator(); itr.hasNext();)
      {
         SQLObject obj = (SQLObject)itr.next();

         if (m_final.findObject(obj.getName()) == null)
         {
            eh = addException(eh, new MetadataException("err.meta.upgrade.sql.extraObject",
               new Object[]{obj.getName(), m_final.getDataSource().getName()}));
         }
      }

      for (Iterator tableItr = m_schema.getTableIterator(); tableItr.hasNext();)
      {
View Full Code Here

TOP

Related Classes of nexj.core.meta.persistence.sql.SQLObject

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.