Package org.databene.mad4db.cmd

Examples of org.databene.mad4db.cmd.SequenceCreation


    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
      throw new UnsupportedOperationException("Not a supported type: " + dbObject);
  }
View Full Code Here


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

  public StructuralChange<DBSequence> creation(DBSequence sequence) {
    return new SequenceCreation(sequence);
  }
View Full Code Here

TOP

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

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.