Package org.databene.mad4db.cmd

Examples of org.databene.mad4db.cmd.CheckConstraintCreation


    else if (dbObject instanceof DBNotNullConstraint)
      return (Creation<E>) new NotNullConstraintCreation((DBNotNullConstraint) dbObject);
    else if (dbObject instanceof DBForeignKeyConstraint)
      return (Creation<E>) new ForeignKeyConstraintCreation((DBForeignKeyConstraint) dbObject);
    else if (dbObject instanceof DBCheckConstraint)
      return (Creation<E>) new CheckConstraintCreation((DBCheckConstraint) dbObject);
    else if (dbObject instanceof DBIndex)
      return (Creation<E>) new IndexCreation((DBIndex) dbObject);
    else if (dbObject instanceof DBSequence)
      return (Creation<E>) new SequenceCreation((DBSequence) dbObject);
    else
View Full Code Here


      CompositeStructuralChange<?> ownerChange) {
    return -1; // TODO
  }

  public StructuralChange<DBCheckConstraint> creation(DBCheckConstraint check) {
    return new CheckConstraintCreation(check);
  }
View Full Code Here

TOP

Related Classes of org.databene.mad4db.cmd.CheckConstraintCreation

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.