Package nexj.core.meta.persistence.sql

Examples of nexj.core.meta.persistence.sql.RelationalSchema.removeObject()


      RelationalSchema schema = state.getSchema();
      String sObject = m_object.getName();

      if (!state.removeObject(sObject))
      {
         schema.removeObject(schema.getObject(sObject));
      }
   }

   /**
    * @see java.lang.Object#toString()
View Full Code Here


   {
      RelationalSchema schema = state.getSchema();

      m_object.getDropScript().validate(schema, null, state.getAdapters());
      m_object.setSchema(schema.getObject(m_object.getName()).getSchema()); // schema of original
      schema.removeObject(m_object);
   }

   /**
    * @return The template of the SQL Object being dropped.
    */
 
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.