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 cn.com.rexen.core.jsonb.hibernate.dialect.JSONBPostgreSQLDialect.java

public class JSONBPostgreSQLDialect extends PostgreSQL82Dialect {

    public JSONBPostgreSQLDialect() {
        super();
        registerColumnType(Types.JAVA_OBJECT, "jsonb");
    }

From source file com.example.hibernate.dialect.JSONBPostgreSQLDialect.java

public class JSONBPostgreSQLDialect extends PostgreSQL82Dialect {

    public JSONBPostgreSQLDialect() {
        super();
        registerColumnType(Types.JAVA_OBJECT, "jsonb");
    }

From source file com.github.pires.example.dal.impl.json.JsonPostgreSQLDialect.java

/**
 * Created by amarcos on 2/19/14.
 */
public class JsonPostgreSQLDialect extends PostgreSQL82Dialect {

    public JsonPostgreSQLDialect() {

From source file com.github.pires.example.hibernate.dialect.JSONBPostgreSQLDialect.java

public class JSONBPostgreSQLDialect extends PostgreSQL82Dialect {

    public JSONBPostgreSQLDialect() {
        super();
        registerColumnType(Types.JAVA_OBJECT, "jsonb");
    }

From source file ee.ria.xroad.common.db.CustomPostgreSQLDialect.java

/**
 * Handle incompatibility between postgres blob => oid|bytea
 */
public class CustomPostgreSQLDialect extends PostgreSQL82Dialect {

    @Override

From source file fr.openwide.core.jpa.hibernate.dialect.PostgreSQLAdvancedDialect.java

/**
 * <p>Surcharge du dialecte PostgreSQL qui permet de grer les squences par table plutt que d'avoir une seule squence
 * globale pour tous les objets.</p>
 * 
 * <p>Les squences sont gres via des types serial et ce dialect suit donc les conventions de nommage de squence de
 * PostgreSQL.</p>

From source file io.apiman.manager.api.jpa.ApimanPostgreSQLDialect.java

/**
 * For consistency, a postgresql dialect in the same package as our H2 and MySQL
 * dialects.
 *
 * @author eric.wittmann@redhat.com
 */

From source file io.github.jhipster.domain.util.FixedPostgreSQL82Dialect.java

public class FixedPostgreSQL82Dialect extends PostgreSQL82Dialect {

    public FixedPostgreSQL82Dialect() {
        super();
        registerColumnType(Types.BLOB, "bytea");
    }

From source file nl.thehyve.podium.domain.util.FixedPostgreSQL82Dialect.java

public class FixedPostgreSQL82Dialect extends PostgreSQL82Dialect {

    public FixedPostgreSQL82Dialect() {
        super();
        registerColumnType(Types.BLOB, "bytea");
    }

From source file org.dspace.storage.rdbms.hibernate.postgres.DSpacePostgreSQL82Dialect.java

/**
 * UUID's are not supported by default in hibernate due to differences in the database in order to fix this a custom sql dialect is needed.
 * Source: https://forum.hibernate.org/viewtopic.php?f=1&t=1014157
 *
 * @author kevinvandevelde at atmire.com
 */