List of usage examples for org.hibernate.dialect Oracle10gDialect subclass-usage
From source file be.fedict.trust.service.hibernate.dialect.Oracle11Dialect.java
/**
* Custom Oracle Dialect to resolve the issue with Double mapping to Oracle's
* Double precision
*
* @author wvdhaute
*
From source file com.amalto.core.storage.hibernate.OracleCustomDialect.java
public class OracleCustomDialect extends Oracle10gDialect { /** * Hibernate 3.5.6 incorrectly maps Double JDBC type. This custom implementation fixes this. */ protected void registerNumericTypeMappings() { super.registerNumericTypeMappings();
From source file com.clican.pluto.orm.dialect.Oracle10gDialectExt.java
public class Oracle10gDialectExt extends Oracle10gDialect implements DialectExtention { public String getModifyColumnString(Column column) { return "modify column"; }
From source file com.querydsl.jpa.support.QOracle10gDialect.java
/** * {@code QOracle10gDialect} extends {@code Oracle10gDialect} with additional functions */ public class QOracle10gDialect extends Oracle10gDialect { public QOracle10gDialect() {
From source file de.micromata.genome.jpa.hibernate.dialect.Oracle10gDialectNoFollowOnLocking.java
/**
* Configuration dialect which allows for <code>SELECT FOR UPDATE</code> operations by using pessimistic locking in
* Oracle.
*
* Define
*
From source file io.apiman.manager.api.jpa.ApimanOracle12Dialect.java
/**
* A custom mysql dialect to convert BOOLEAN to BIT(1). This is done automatically
* in newer versions of hibernate.
*
* @author eric.wittmann@redhat.com
*/
From source file org.babyfish.hibernate.dialect.Oracle10gDialect.java
/** * @author Tao Chen */ public class Oracle10gDialect extends org.hibernate.dialect.Oracle10gDialect implements DistinctLimitDialect, LimitedListDialect, InstallableDialect {
From source file org.candlepin.hibernate.Oracle10gDialectFollowOnLockingOff.java
/**
* We make sure that our locking queries work on all supported database servers
* and thus don't need follow on locking. The feature caused us trouble. Queries
* that locked on other DBs were was not locking on Oracle.
*
* This dialect might cause some SQL syntax errors on Oracle. Some of the cases
From source file org.jbpm.persistence.jpa.hibernate.DisabledFollowOnLockOracle10gDialect.java
/** * Customized Oracle10gDialect to avoid race conditions when using select for update with paging. * */ public class DisabledFollowOnLockOracle10gDialect extends Oracle10gDialect {
From source file org.jspresso.framework.model.persistence.hibernate.dialect.Oracle10gDialect.java
/** * Customized Oracle 10g dialect. * * @author Vincent Vandenschrick */ public class Oracle10gDialect extends org.hibernate.dialect.Oracle10gDialect {