Package org.springframework.jdbc.support.incrementer

Examples of org.springframework.jdbc.support.incrementer.DerbyMaxValueIncrementer


    }
    else if (databaseType == DB2ZOS) {
      return new DB2MainframeSequenceMaxValueIncrementer(dataSource, incrementerName);
    }
    else if (databaseType == DERBY) {
      return new DerbyMaxValueIncrementer(dataSource, incrementerName, incrementerColumnName);
    }
    else if (databaseType == HSQL) {
      return new HsqlMaxValueIncrementer(dataSource, incrementerName, incrementerColumnName);
    }
    else if (databaseType == H2) {
View Full Code Here

TOP

Related Classes of org.springframework.jdbc.support.incrementer.DerbyMaxValueIncrementer

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.