Example usage for org.hibernate.dialect PostgreSQL82Dialect subclass-usage

List of usage examples for org.hibernate.dialect PostgreSQL82Dialect subclass-usage

Introduction

In this page you can find the example usage for org.hibernate.dialect PostgreSQL82Dialect subclass-usage.

Usage

From source file org.ow2.proactive.workflow_catalog.rest.dialect.PostgreSQLDialect.java

/**
 * @author ActiveEon Team
 * @since 08/06/17
 */
public class PostgreSQLDialect extends PostgreSQL82Dialect {

From source file org.shredzone.cilla.core.hibernate.TableNameSequencePostgresDialect.java

/**
 * A {@link PostgreSQL82Dialect} that generates an individual sequence for every table,
 * instead of sharing a single sequence to all tables.
 *
 * @author Richard "Shred" Krber
 * @see <a href="http://community.jboss.org/wiki/Customsequences">http://community.jboss.org/wiki/Customsequences</a>

From source file org.springbyexample.orm.dialect.TableNameSequencePostgreSQLDialect.java

/**
 * Modified PostgreSQL dialect that works that uses 
 * the default generated sequences for each table (SERIAL column type).
 * 
 * @author David Winterfeldt
 *