Example usage for org.springframework.jdbc.datasource.embedded EmbeddedDatabaseConfigurer interface-usage

List of usage examples for org.springframework.jdbc.datasource.embedded EmbeddedDatabaseConfigurer interface-usage

Introduction

In this page you can find the example usage for org.springframework.jdbc.datasource.embedded EmbeddedDatabaseConfigurer interface-usage.

Usage

From source file org.springframework.jdbc.datasource.embedded.AbstractEmbeddedDatabaseConfigurer.java

/**
 * Base class for {@link EmbeddedDatabaseConfigurer} implementations providing common shutdown behavior.
 *
 * @author Oliver Gierke
 * @author Juergen Hoeller
 * @since 3.0

From source file org.springframework.jdbc.datasource.embedded.DerbyEmbeddedDatabaseConfigurer.java

/**
 * {@link EmbeddedDatabaseConfigurer} for the Apache Derby database 10.6+.
 * <p>Call {@link #getInstance()} to get the singleton instance of this class.
 *
 * @author Oliver Gierke
 * @author Juergen Hoeller

From source file sf.wicklet.gwt.site.server.db.H2Configurator.java

/** A custom h2database configuration that allow specifying the db location. */
public class H2Configurator implements EmbeddedDatabaseConfigurer {

    /** Simple wrapper that use varargs for ease of use. */
    public static class PscFactory extends PreparedStatementCreatorFactory {
        public PscFactory(final String sql, final int... types) {

From source file org.fao.geonet.GeonetworkH2TestEmbeddedDatabaseConfigurer.java

/**
 * Configures the H2 database to be a bit more string so mysql and other databases are more likely
 * to work if the tests pass.
 *
 * User: Jesse Date: 10/31/13 Time: 10:42 AM
 */