HHH-3343 : PostgresPlusDialect

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15306 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Steve Ebersole 2008-10-09 17:50:14 +00:00
parent be0c5273b3
commit 3a083fc12a
1 changed files with 93 additions and 0 deletions

View File

@ -0,0 +1,93 @@
/*
* 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.CallableStatement;
import java.sql.ResultSet;
import org.hibernate.Hibernate;
import org.hibernate.dialect.function.NoArgSQLFunction;
import org.hibernate.dialect.function.NvlFunction;
import org.hibernate.dialect.function.StandardSQLFunction;
/**
* An SQL dialect for Postgres Plus
*
* @author Jim Mlodgenski
*/
public class PostgresPlusDialect extends PostgreSQLDialect {
public PostgresPlusDialect() {
super();
registerFunction( "ltrim", new StandardSQLFunction( "ltrim" ) );
registerFunction( "rtrim", new StandardSQLFunction( "rtrim" ) );
registerFunction( "soundex", new StandardSQLFunction( "soundex" ) );
registerFunction( "sysdate", new NoArgSQLFunction( "sysdate", Hibernate.DATE, false ) );
registerFunction( "rowid", new NoArgSQLFunction( "rowid", Hibernate.LONG, false ) );
registerFunction( "rownum", new NoArgSQLFunction( "rownum", Hibernate.LONG, false ) );
registerFunction( "instr", new StandardSQLFunction( "instr", Hibernate.INTEGER ) );
registerFunction( "lpad", new StandardSQLFunction( "lpad", Hibernate.STRING ) );
registerFunction( "replace", new StandardSQLFunction( "replace", Hibernate.STRING ) );
registerFunction( "rpad", new StandardSQLFunction( "rpad", Hibernate.STRING ) );
registerFunction( "translate", new StandardSQLFunction( "translate", Hibernate.STRING ) );
registerFunction( "substring", new StandardSQLFunction( "substr", Hibernate.STRING ) );
registerFunction( "coalesce", new NvlFunction() );
registerFunction( "atan2", new StandardSQLFunction( "atan2", Hibernate.FLOAT ) );
registerFunction( "mod", new StandardSQLFunction( "mod", Hibernate.INTEGER ) );
registerFunction( "nvl", new StandardSQLFunction( "nvl" ) );
registerFunction( "nvl2", new StandardSQLFunction( "nvl2" ) );
registerFunction( "power", new StandardSQLFunction( "power", Hibernate.FLOAT ) );
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 ) );
}
public String getCurrentTimestampSelectString() {
return "select sysdate";
}
public String getCurrentTimestampSQLFunctionName() {
return "sysdate";
}
public int registerResultSetOutParameter(CallableStatement statement, int col) throws SQLException {
statement.registerOutParameter( col, Types.REF );
col++;
return col;
}
public ResultSet getResultSet(CallableStatement ps) throws SQLException {
ps.execute();
return ( ResultSet ) ps.getObject( 1 );
}
public String getSelectGUIDString() {
return "select uuid_generate_v1";
}
}