⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 oracle8idialect.java

📁 hibernate-distribution-3.3.1.GA-dist.zip源码
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* * Hibernate, Relational Persistence for Idiomatic Java * * Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as * indicated by the @author tags or express copyright attribution * statements applied by the authors.  All third-party contributions are * distributed under license by Red Hat Middleware LLC. * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA  02110-1301  USA * */package org.hibernate.dialect;import java.sql.Types;import java.sql.SQLException;import java.sql.ResultSet;import java.sql.CallableStatement;import org.hibernate.sql.CaseFragment;import org.hibernate.sql.DecodeCaseFragment;import org.hibernate.sql.JoinFragment;import org.hibernate.sql.OracleJoinFragment;import org.hibernate.cfg.Environment;import org.hibernate.dialect.function.StandardSQLFunction;import org.hibernate.dialect.function.NoArgSQLFunction;import org.hibernate.dialect.function.VarArgsSQLFunction;import org.hibernate.dialect.function.SQLFunctionTemplate;import org.hibernate.dialect.function.NvlFunction;import org.hibernate.Hibernate;import org.hibernate.HibernateException;import org.hibernate.util.ReflectHelper;import org.hibernate.exception.ViolatedConstraintNameExtracter;import org.hibernate.exception.TemplatedViolatedConstraintNameExtracter;import org.hibernate.exception.JDBCExceptionHelper;/** * A dialect for Oracle 8i. * * @author Steve Ebersole */public class Oracle8iDialect extends Dialect {	public Oracle8iDialect() {		super();		registerCharacterTypeMappings();		registerNumericTypeMappings();		registerDateTimeTypeMappings();		registerLargeObjectTypeMappings();		registerReverseHibernateTypeMappings();		registerFunctions();		registerDefaultProperties();	}	protected void registerCharacterTypeMappings() {		registerColumnType( Types.CHAR, "char(1)" );		registerColumnType( Types.VARCHAR, 4000, "varchar2($l)" );		registerColumnType( Types.VARCHAR, "long" );	}	protected void registerNumericTypeMappings() {		registerColumnType( Types.BIT, "number(1,0)" );		registerColumnType( Types.BIGINT, "number(19,0)" );		registerColumnType( Types.SMALLINT, "number(5,0)" );		registerColumnType( Types.TINYINT, "number(3,0)" );		registerColumnType( Types.INTEGER, "number(10,0)" );		registerColumnType( Types.FLOAT, "float" );		registerColumnType( Types.DOUBLE, "double precision" );		registerColumnType( Types.NUMERIC, "number($p,$s)" );		registerColumnType( Types.DECIMAL, "number($p,$s)" );	}	protected void registerDateTimeTypeMappings() {		registerColumnType( Types.DATE, "date" );		registerColumnType( Types.TIME, "date" );		registerColumnType( Types.TIMESTAMP, "date" );	}	protected void registerLargeObjectTypeMappings() {		registerColumnType( Types.VARBINARY, 2000, "raw($l)" );		registerColumnType( Types.VARBINARY, "long raw" );		registerColumnType( Types.BLOB, "blob" );		registerColumnType( Types.CLOB, "clob" );	}	protected void registerReverseHibernateTypeMappings() {	}	protected void registerFunctions() {		registerFunction( "abs", new StandardSQLFunction("abs") );		registerFunction( "sign", new StandardSQLFunction("sign", Hibernate.INTEGER) );		registerFunction( "acos", new StandardSQLFunction("acos", Hibernate.DOUBLE) );		registerFunction( "asin", new StandardSQLFunction("asin", Hibernate.DOUBLE) );		registerFunction( "atan", new StandardSQLFunction("atan", Hibernate.DOUBLE) );		registerFunction( "cos", new StandardSQLFunction("cos", Hibernate.DOUBLE) );		registerFunction( "cosh", new StandardSQLFunction("cosh", Hibernate.DOUBLE) );		registerFunction( "exp", new StandardSQLFunction("exp", Hibernate.DOUBLE) );		registerFunction( "ln", new StandardSQLFunction("ln", Hibernate.DOUBLE) );		registerFunction( "sin", new StandardSQLFunction("sin", Hibernate.DOUBLE) );		registerFunction( "sinh", new StandardSQLFunction("sinh", Hibernate.DOUBLE) );		registerFunction( "stddev", new StandardSQLFunction("stddev", Hibernate.DOUBLE) );		registerFunction( "sqrt", new StandardSQLFunction("sqrt", Hibernate.DOUBLE) );		registerFunction( "tan", new StandardSQLFunction("tan", Hibernate.DOUBLE) );		registerFunction( "tanh", new StandardSQLFunction("tanh", Hibernate.DOUBLE) );		registerFunction( "variance", new StandardSQLFunction("variance", Hibernate.DOUBLE) );		registerFunction( "round", new StandardSQLFunction("round") );		registerFunction( "trunc", new StandardSQLFunction("trunc") );		registerFunction( "ceil", new StandardSQLFunction("ceil") );		registerFunction( "floor", new StandardSQLFunction("floor") );		registerFunction( "chr", new StandardSQLFunction("chr", Hibernate.CHARACTER) );		registerFunction( "initcap", new StandardSQLFunction("initcap") );		registerFunction( "lower", new StandardSQLFunction("lower") );		registerFunction( "ltrim", new StandardSQLFunction("ltrim") );		registerFunction( "rtrim", new StandardSQLFunction("rtrim") );		registerFunction( "soundex", new StandardSQLFunction("soundex") );		registerFunction( "upper", new StandardSQLFunction("upper") );		registerFunction( "ascii", new StandardSQLFunction("ascii", Hibernate.INTEGER) );		registerFunction( "length", new StandardSQLFunction("length", Hibernate.LONG) );		registerFunction( "to_char", new StandardSQLFunction("to_char", Hibernate.STRING) );		registerFunction( "to_date", new StandardSQLFunction("to_date", Hibernate.TIMESTAMP) );		registerFunction( "current_date", new NoArgSQLFunction("current_date", Hibernate.DATE, false) );		registerFunction( "current_time", new NoArgSQLFunction("current_timestamp", Hibernate.TIME, false) );		registerFunction( "current_timestamp", new NoArgSQLFunction("current_timestamp", Hibernate.TIMESTAMP, false) );		registerFunction( "last_day", new StandardSQLFunction("last_day", Hibernate.DATE) );		registerFunction( "sysdate", new NoArgSQLFunction("sysdate", Hibernate.DATE, false) );		registerFunction( "systimestamp", new NoArgSQLFunction("systimestamp", Hibernate.TIMESTAMP, false) );		registerFunction( "uid", new NoArgSQLFunction("uid", Hibernate.INTEGER, false) );		registerFunction( "user", new NoArgSQLFunction("user", Hibernate.STRING, false) );		registerFunction( "rowid", new NoArgSQLFunction("rowid", Hibernate.LONG, false) );		registerFunction( "rownum", new NoArgSQLFunction("rownum", Hibernate.LONG, false) );		// Multi-param string dialect functions...		registerFunction( "concat", new VarArgsSQLFunction(Hibernate.STRING, "", "||", "") );		registerFunction( "instr", new StandardSQLFunction("instr", Hibernate.INTEGER) );		registerFunction( "instrb", new StandardSQLFunction("instrb", Hibernate.INTEGER) );		registerFunction( "lpad", new StandardSQLFunction("lpad", Hibernate.STRING) );		registerFunction( "replace", new StandardSQLFunction("replace", Hibernate.STRING) );		registerFunction( "rpad", new StandardSQLFunction("rpad", Hibernate.STRING) );		registerFunction( "substr", new StandardSQLFunction("substr", Hibernate.STRING) );		registerFunction( "substrb", new StandardSQLFunction("substrb", Hibernate.STRING) );		registerFunction( "translate", new StandardSQLFunction("translate", Hibernate.STRING) );		registerFunction( "substring", new StandardSQLFunction( "substr", Hibernate.STRING ) );		registerFunction( "locate", new SQLFunctionTemplate( Hibernate.INTEGER, "instr(?2,?1)" ) );		registerFunction( "bit_length", new SQLFunctionTemplate( Hibernate.INTEGER, "vsize(?1)*8" ) );		registerFunction( "coalesce", new NvlFunction() );		// Multi-param numeric dialect functions...		registerFunction( "atan2", new StandardSQLFunction("atan2", Hibernate.FLOAT) );		registerFunction( "log", new StandardSQLFunction("log", Hibernate.INTEGER) );		registerFunction( "mod", new StandardSQLFunction("mod", Hibernate.INTEGER) );		registerFunction( "nvl", new StandardSQLFunction("nvl") );		registerFunction( "nvl2", new StandardSQLFunction("nvl2") );		registerFunction( "power", new StandardSQLFunction("power", Hibernate.FLOAT) );		// Multi-param date dialect functions...		registerFunction( "add_months", new StandardSQLFunction("add_months", Hibernate.DATE) );		registerFunction( "months_between", new StandardSQLFunction("months_between", Hibernate.FLOAT) );		registerFunction( "next_day", new StandardSQLFunction("next_day", Hibernate.DATE) );		registerFunction( "str", new StandardSQLFunction("to_char", Hibernate.STRING) );	}	protected void registerDefaultProperties() {		getDefaultProperties().setProperty( Environment.USE_STREAMS_FOR_BINARY, "true" );		getDefaultProperties().setProperty( Environment.STATEMENT_BATCH_SIZE, DEFAULT_BATCH_SIZE );		// Oracle driver reports to support getGeneratedKeys(), but they only		// support the version taking an array of the names of the columns to		// be returned (via its RETURNING clause).  No other driver seems to		// support this overloaded version.		getDefaultProperties().setProperty( Environment.USE_GET_GENERATED_KEYS, "false" );	}	// features which change between 8i, 9i, and 10g ~~~~~~~~~~~~~~~~~~~~~~~~~~	/**	 * Support for the oracle proprietary join syntax...	 *	 * @return The orqacle join fragment	 */	public JoinFragment createOuterJoinFragment() {		return new OracleJoinFragment();	}	/**	 * Map case support to the Oracle DECODE function.  Oracle did not	 * add support for CASE until 9i.	 *	 * @return The oracle CASE -> DECODE fragment	 */	public CaseFragment createCaseFragment() {		return new DecodeCaseFragment();	}	public String getLimitString(String sql, boolean hasOffset) {		sql = sql.trim();		boolean isForUpdate = false;		if ( sql.toLowerCase().endsWith(" for update") ) {			sql = sql.substring( 0, sql.length()-11 );			isForUpdate = true;		}		StringBuffer pagingSelect = new StringBuffer( sql.length()+100 );		if (hasOffset) {			pagingSelect.append("select * from ( select row_.*, rownum rownum_ from ( ");		}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -