Package org.springframework.jdbc.support.incrementer

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


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

TOP

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

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.