All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ch.inftec.ju.testing.db.data.DefaultDerbyTestDb Maven / Gradle / Ivy

There is a newer version: 4.5.1-11
Show newest version
package ch.inftec.ju.testing.db.data;

import ch.inftec.ju.db.JuDbException;
import ch.inftec.ju.testing.db.data.TestDbUtils.AbstractTestDb;

/**
 * Default implementation of a Derby Test DB.
 * 

* Defers from the DerbyTestDb in the way it doesn't create any tables on * its own. * @author Martin * */ public class DefaultDerbyTestDb extends AbstractTestDb { protected void resetPlatformSpecificData() throws JuDbException { // XXX: Adapt for hibernate // Reset sequence to guarantee predictable primary key values //this.jdbcTemplate.update("UPDATE SEQUENCE SET SEQ_COUNT=? WHERE SEQ_NAME=?", 9, "SEQ_GEN"); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy