Examples of statementsToDeleteColumnNamed()


Examples of com.webobjects.eoaccess.EOSchemaSynchronization.statementsToDeleteColumnNamed()

   * @return an array of EOSQLExpressions for deleting this column
   */
  @SuppressWarnings("unchecked")
  public NSArray<EOSQLExpression> _deleteExpressions() {
    EOSchemaSynchronization schemaSynchronization = _table.database().synchronizationFactory();
    NSArray<EOSQLExpression> expressions = schemaSynchronization.statementsToDeleteColumnNamed(name(), _table.name(), NSDictionary.EmptyDictionary);
    ERXMigrationDatabase._ensureNotEmpty(expressions, "delete column", true);
    return expressions;
  }

  /**
 
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.