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

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

Introduction

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

Usage

From source file br.com.arsmachina.dao.hibernate.dialect.IdentityPostresqlDialect.java

/**
 * {@link PostgreSQLDialect} that defines {@link IdentityGenerator} as the default id value
 * generator instead of {@link SequenceGenerator}. In addition, it fixes the "wrong sequence name
 * in backticks-scaped table name bug".
 * 
 * @author Thiago H. de Paula Figueiredo

From source file com.griddynamics.jagger.hibernate.PostgresDialect.java

/**
 * User: dkotlyarov
 */
public class PostgresDialect extends PostgreSQLDialect {
    public PostgresDialect() {
        registerColumnType(Types.BLOB, "bytea");

From source file com.jaspersoft.hibernate.dialect.PostgresqlNoBlobDialect.java

/**
 * This dialect maps blobs to binary streams for PostgreSQL.
 * This is necessary because PostgreSQL requires blob access to happen within a transaction.
 * That means we have to turn defaultAutoCommit off which has some weird side effects.
 * Using the "bytea" type should work better.
 * 

From source file com.marvinformatics.hibernate.json.PostgreSQL93Dialect.java

/**
 * An SQL dialect for Postgres 9.3
 * 
 * Includes support to JSON type
 * <a href="http://www.postgresql.org/docs/9.3/static/datatype-json.html">http://www.postgresql.org/docs/9.3/static/datatype-json.html</a>.
 * 

From source file com.querydsl.jpa.support.QPostgreSQLDialect.java

/**
 * {@code QPostgreSQLDialect} extends {@code PostgreSQLDialect} with additional functions
 */
public class QPostgreSQLDialect extends PostgreSQLDialect {

    public QPostgreSQLDialect() {

From source file edu.duke.cabig.c3pr.hibernate.ImprovedPostgreSQLDialect.java

/**
 * @author Rhett Sutphin
 */
/* TODO: this class is shared with PSC. Refactor into a shared library. */
public class ImprovedPostgreSQLDialect extends PostgreSQLDialect {

From source file edu.emory.library.tast.db.TastPostgreSQLDialect.java

public class TastPostgreSQLDialect extends PostgreSQLDialect {

    public TastPostgreSQLDialect() {
        super();

        // registerColumnType(Types.OTHER, "number($p,$s)");

From source file gov.nih.nci.cabig.caaers.tools.hibernate.ImprovedPostgreSQLDialect.java

/**
 * @author Rhett Sutphin
 * @author Biju Joseph - added bitwise operator support
 */
/* TODO: this class is shared with PSC. Refactor into a shared library. */
public class ImprovedPostgreSQLDialect extends PostgreSQLDialect {

From source file gov.nih.nci.cabig.caaers2adeers.hibernate.ImprovedPostgreSQLDialect.java

/**
 * @author Rhett Sutphin
 */
/* TODO: this class is shared with PSC. Refactor into a shared library. */
public class ImprovedPostgreSQLDialect extends PostgreSQLDialect {
    public Class getNativeIdentifierGeneratorClass() {

From source file org.apereo.portal.utils.hibernate3.dialects.PostgreSQL81Dialect.java

/** */
public class PostgreSQL81Dialect extends PostgreSQLDialect {
    @Override
    public boolean supportsIfExistsBeforeTableName() {
        return false;
    }