Package net.sf.hajdbc

Examples of net.sf.hajdbc.UniqueConstraintFactory


  {
    super(table);
   
    IdentifierNormalizer normalizer = factory.getIdentifierNormalizer();
    this.columnMap = dialect.getColumns(metaData, table, dialect.createColumnPropertiesFactory(normalizer));
    UniqueConstraintFactory uniqueConstraintFactory = dialect.createUniqueConstraintFactory(normalizer);
    this.primaryKey = dialect.getPrimaryKey(metaData, table, uniqueConstraintFactory);
    this.uniqueConstraints = dialect.getUniqueConstraints(metaData, table, this.primaryKey, uniqueConstraintFactory);
    this.foreignKeyConstraints = dialect.getForeignKeyConstraints(metaData, table, dialect.createForeignKeyConstraintFactory(factory));
    this.identityColumns = dialect.getIdentityColumns(this.columnMap.values());
  }
View Full Code Here

TOP

Related Classes of net.sf.hajdbc.UniqueConstraintFactory

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.