All Downloads are FREE. Search and download functionalities are using the official Maven repository.

oracle.toplink.essentials.platform.database.oracle.OraclePlatform Maven / Gradle / Ivy

There is a newer version: 2.1-60f
Show newest version
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 * 
 * // Copyright (c) 1998, 2007, Oracle. All rights reserved.
 * 
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License. You can obtain
 * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
 * or glassfish/bootstrap/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 * 
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
 * Sun designates this particular file as subject to the "Classpath" exception
 * as provided by Sun in the GPL Version 2 section of the License file that
 * accompanied this code.  If applicable, add the following below the License
 * Header, with the fields enclosed by brackets [] replaced by your own
 * identifying information: "Portions Copyrighted [year]
 * [name of copyright owner]"
 * 
 * Contributor(s):
 * 
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */
// Copyright (c) 1998, 2007, Oracle. All rights reserved.  
package oracle.toplink.essentials.platform.database.oracle;

import java.util.*;
import java.io.*;
import java.sql.*;
import oracle.toplink.essentials.exceptions.*;
import oracle.toplink.essentials.queryframework.*;
import oracle.toplink.essentials.internal.helper.*;
import oracle.toplink.essentials.expressions.*;
import oracle.toplink.essentials.internal.expressions.*;
import oracle.toplink.essentials.internal.databaseaccess.*;
import oracle.toplink.essentials.internal.sessions.AbstractSession;

/**
 * 

Purpose: Provides Oracle specific behaviour. *

Responsibilities:

    *
  • Native SQL for byte[], Date, Time, & Timestamp. *
  • Native sequencing named sequences. *
* * @since TOPLink/Java 1.0 */ public class OraclePlatform extends oracle.toplink.essentials.platform.database.DatabasePlatform { /** * INTERNAL: * Used for sp defs. */ public boolean allowsSizeInProcedureArguments() { return false; } /** * INTERNAL: * If using native SQL then print a byte[] literally as a hex string otherwise use ODBC format * as provided in DatabasePlatform. */ protected void appendByteArray(byte[] bytes, Writer writer) throws IOException { if (usesNativeSQL()) { writer.write('\''); Helper.writeHexString(bytes, writer); writer.write('\''); } else { super.appendByteArray(bytes, writer); } } /** * INTERNAL: * Appends an Oracle specific date if usesNativeSQL is true otherwise use the ODBC format. * Native FORMAT: to_date('1997-11-06','yyyy-mm-dd') */ protected void appendDate(java.sql.Date date, Writer writer) throws IOException { if (usesNativeSQL()) { writer.write("to_date('"); writer.write(Helper.printDate(date)); writer.write("','yyyy-mm-dd')"); } else { super.appendDate(date, writer); } } /** * INTERNAL: * Appends an Oracle specific time if usesNativeSQL is true otherwise use the ODBC format. * Native FORMAT: to_date(#####, 'sssss'). */ protected void appendTime(java.sql.Time time, Writer writer) throws IOException { if (usesNativeSQL()) { writer.write("to_date('"); writer.write(Helper.printTime(time)); writer.write("','hh24:mi:ss')"); } else { super.appendTime(time, writer); } } /** * INTERNAL: * Appends an Oracle specific Timestamp, if usesNativeSQL is true otherwise use the ODBC format. * Native Format: to_date ('1997-11-06 10:35:45.0' , 'yyyy-mm-dd hh:mm:ss.n') */ protected void appendTimestamp(java.sql.Timestamp timestamp, Writer writer) throws IOException { if (usesNativeSQL()) { writer.write("to_date('"); writer.write(Helper.printTimestampWithoutNanos(timestamp)); writer.write("','yyyy-mm-dd hh24:mi:ss')"); } else { super.appendTimestamp(timestamp, writer); } } /** * INTERNAL: * Appends an Oracle specific Timestamp, if usesNativeSQL is true otherwise use the ODBC format. * Native Format: to_date ('1997-11-06 10:35:45.0' , 'yyyy-mm-dd hh:mm:ss.n') */ protected void appendCalendar(Calendar calendar, Writer writer) throws IOException { if (usesNativeSQL()) { writer.write("to_date('"); writer.write(Helper.printCalendarWithoutNanos(calendar)); writer.write("','yyyy-mm-dd hh24:mi:ss')"); } else { super.appendCalendar(calendar, writer); } } /** * INTERNAL: * Build operator. */ public ExpressionOperator atan2Operator() { return ExpressionOperator.simpleTwoArgumentFunction(ExpressionOperator.Atan2, "ATAN2"); } protected Hashtable buildFieldTypes() { Hashtable fieldTypeMapping; fieldTypeMapping = new Hashtable(); fieldTypeMapping.put(Boolean.class, new FieldTypeDefinition("NUMBER(1) default 0", false)); fieldTypeMapping.put(Integer.class, new FieldTypeDefinition("NUMBER", 10)); fieldTypeMapping.put(Long.class, new FieldTypeDefinition("NUMBER", 19)); fieldTypeMapping.put(Float.class, new FieldTypeDefinition("NUMBER", 19, 4)); fieldTypeMapping.put(Double.class, new FieldTypeDefinition("NUMBER", 19, 4)); fieldTypeMapping.put(Short.class, new FieldTypeDefinition("NUMBER", 5)); fieldTypeMapping.put(Byte.class, new FieldTypeDefinition("NUMBER", 3)); fieldTypeMapping.put(java.math.BigInteger.class, new FieldTypeDefinition("NUMBER", 38)); fieldTypeMapping.put(java.math.BigDecimal.class, new FieldTypeDefinition("NUMBER", 38).setLimits(38, -38, 38)); fieldTypeMapping.put(Number.class, new FieldTypeDefinition("NUMBER", 38).setLimits(38, -38, 38)); fieldTypeMapping.put(String.class, new FieldTypeDefinition("VARCHAR2", 255)); fieldTypeMapping.put(Character.class, new FieldTypeDefinition("CHAR", 1)); fieldTypeMapping.put(Byte[].class, new FieldTypeDefinition("LONG RAW", false)); fieldTypeMapping.put(Character[].class, new FieldTypeDefinition("LONG", false)); fieldTypeMapping.put(byte[].class, new FieldTypeDefinition("LONG RAW", false)); fieldTypeMapping.put(char[].class, new FieldTypeDefinition("LONG", false)); fieldTypeMapping.put(java.sql.Blob.class, new FieldTypeDefinition("BLOB", false)); fieldTypeMapping.put(java.sql.Clob.class, new FieldTypeDefinition("CLOB", false)); fieldTypeMapping.put(java.sql.Date.class, new FieldTypeDefinition("DATE", false)); fieldTypeMapping.put(java.sql.Time.class, new FieldTypeDefinition("TIMESTAMP", false)); fieldTypeMapping.put(java.sql.Timestamp.class, new FieldTypeDefinition("TIMESTAMP", false)); return fieldTypeMapping; } /** * Return the mapping of class types to database types for the schema framework. */ protected Hashtable buildClassTypes() { //use what is defined in DatabasePlatform and override the blob/clob entries Hashtable classTypeMapping = super.buildClassTypes(); classTypeMapping.put("BLOB", java.sql.Blob.class); classTypeMapping.put("CLOB", java.sql.Clob.class); return classTypeMapping; } /** * INTERNAL * Returns null unless the platform supports call with returning */ public DatabaseCall buildCallWithReturning(SQLCall sqlCall, Vector returnFields) { SQLCall call = new SQLCall(); call.setParameters(sqlCall.getParameters()); call.setParameterTypes(sqlCall.getParameterTypes()); Writer writer = new CharArrayWriter(200); try { writer.write("BEGIN "); writer.write(sqlCall.getSQLString()); writer.write(" RETURNING "); for (int i = 0; i < returnFields.size(); i++) { DatabaseField field = (DatabaseField)returnFields.elementAt(i); writer.write(field.getName()); if ((i + 1) < returnFields.size()) { writer.write(", "); } } writer.write(" INTO "); for (int i = 0; i < returnFields.size(); i++) { DatabaseField field = (DatabaseField)returnFields.elementAt(i); call.appendOut(writer, field); if ((i + 1) < returnFields.size()) { writer.write(", "); } } writer.write("; END;"); call.setQueryString(writer.toString()); } catch (IOException exception) { throw ValidationException.fileError(exception); } return call; } /** * INTERNAL * Indicates whether the platform can build call with returning. * In case this method returns true, buildCallWithReturning method * may be called. */ public boolean canBuildCallWithReturning() { return true; } /** * INTERNAL * Used for stored function calls. */ public String getAssignmentString() { return ":= "; } /** * INTERNAL: * Used for batch writing and sp defs. */ public String getBatchBeginString() { return "BEGIN "; } /** * INTERNAL: * Used for batch writing and sp defs. */ public String getBatchEndString() { return "END;"; } /** * Returns the JDBC outer join operator for SELECT statements. * Overwrites the default implementation, as some Oracle versions * seem to require the syntax given here. */ public String getJDBCOuterJoinString() { return "{'oj "; } /** * INTERNAL: * returns the maximum number of characters that can be used in a field * name on this platform. */ public int getMaxFieldNameSize() { return 30; } /** * INTERNAL: * Return the catalog information through using the native SQL catalog selects. * This is required because many JDBC driver do not support meta-data. * Willcards can be passed as arguments. */ public Vector getNativeTableInfo(String table, String creator, AbstractSession session) { String query = "SELECT * FROM ALL_TABLES WHERE OWNER NOT IN ('SYS', 'SYSTEM')"; if (table != null) { if (table.indexOf('%') != -1) { query = query + " AND TABLE_NAME LIKE " + table; } else { query = query + " AND TABLE_NAME = " + table; } } if (creator != null) { if (creator.indexOf('%') != -1) { query = query + " AND OWNER LIKE " + creator; } else { query = query + " AND OWNER = " + creator; } } return session.executeSelectingCall(new oracle.toplink.essentials.queryframework.SQLCall(query)); } /** * INTERNAL: * Used for sp calls. */ public String getProcedureArgumentSetter() { return "=>"; } /** * INTERNAL: * Used for sp calls. */ public String getProcedureCallHeader() { return "BEGIN "; } /** * INTERNAL: * Used for sp calls. */ public String getProcedureCallTail() { return "; END;"; } /** * INTERNAL: */ public String getSelectForUpdateString() { return " FOR UPDATE"; } /** * INTERNAL: */ public String getStoredProcedureParameterPrefix() { return "P_"; } /** * INTERNAL: */ public String getStoredProcedureTerminationToken() { return ""; } /** * INTERNAL: * The query to select the current system change number * from Oracle. * In order to execute this query a database administrator may need * to grant execute permission on pl/sql package DBMS_FLASHBACK. */ public ValueReadQuery getSystemChangeNumberQuery() { ValueReadQuery sCNQuery = new ValueReadQuery(); sCNQuery.setSQLString("SELECT DBMS_FLASHBACK.GET_SYSTEM_CHANGE_NUMBER FROM DUAL"); return sCNQuery; } /** * INTERNAL: * This method returns the query to select the timestamp * from the server for Oracle. */ public ValueReadQuery getTimestampQuery() { if (timestampQuery == null) { timestampQuery = new ValueReadQuery(); timestampQuery.setSQLString("SELECT SYSDATE FROM DUAL"); } return timestampQuery; } /** * INTERNAL: * Get a timestamp value from a result set. * Overrides the default behavior to specifically return a timestamp. Added * to overcome an issue with the oracle 9.0.1.4 JDBC driver. */ public Object getObjectFromResultSet(ResultSet resultSet, int columnNumber, int type) throws java.sql.SQLException { //Bug#3381652 10G Drivers return sql.Date instead of timestamp on DATE field if ((type == Types.TIMESTAMP) || (type == Types.DATE)) { return resultSet.getTimestamp(columnNumber); } else { return resultSet.getObject(columnNumber); } } /** * INTERNAL: * Initialize any platform-specific operators */ protected void initializePlatformOperators() { super.initializePlatformOperators(); addOperator(operatorOuterJoin()); addOperator(logOperator()); addOperator(ExpressionOperator.simpleTwoArgumentFunction(ExpressionOperator.Concat, "CONCAT")); addOperator(todayOperator()); addOperator(currentDateOperator()); addOperator(currentTimeOperator()); addOperator(ExpressionOperator.truncateDate()); addOperator(ExpressionOperator.newTime()); addOperator(ExpressionOperator.ifNull()); addOperator(atan2Operator()); addOperator(ExpressionOperator.oracleDateName()); addOperator(operatorLocate()); addOperator(operatorLocate2()); } public boolean isOracle() { return true; } /** * INTERNAL: * Create the log operator for this platform */ protected ExpressionOperator logOperator() { ExpressionOperator result = new ExpressionOperator(); result.setSelector(ExpressionOperator.Log); Vector v = new Vector(2); v.addElement("LOG("); v.addElement(", 10)"); result.printsAs(v); result.bePrefix(); result.setNodeClass(FunctionExpression.class); return result; } /** * INTERNAL: * Builds a table of maximum numeric values keyed on java class. This is used for type testing but * might also be useful to end users attempting to sanitize values. *

NOTE: BigInteger & BigDecimal maximums are dependent upon their precision & Scale */ public Hashtable maximumNumericValues() { Hashtable values = new Hashtable(); values.put(Integer.class, new Integer(Integer.MAX_VALUE)); values.put(Long.class, new Long(Long.MAX_VALUE)); values.put(Double.class, new Double((double)9.9999E125)); values.put(Short.class, new Short(Short.MAX_VALUE)); values.put(Byte.class, new Byte(Byte.MAX_VALUE)); values.put(Float.class, new Float(Float.MAX_VALUE)); values.put(java.math.BigInteger.class, new java.math.BigInteger("0")); values.put(java.math.BigDecimal.class, new java.math.BigDecimal(new java.math.BigInteger("0"), 38)); return values; } /** * INTERNAL: * Builds a table of minimum numeric values keyed on java class. This is used for type testing but * might also be useful to end users attempting to sanitize values. *

NOTE: BigInteger & BigDecimal minimums are dependent upon their precision & Scale */ public Hashtable minimumNumericValues() { Hashtable values = new Hashtable(); values.put(Integer.class, new Integer(Integer.MIN_VALUE)); values.put(Long.class, new Long(Long.MIN_VALUE)); values.put(Double.class, new Double((double)-1E-129)); values.put(Short.class, new Short(Short.MIN_VALUE)); values.put(Byte.class, new Byte(Byte.MIN_VALUE)); values.put(Float.class, new Float(Float.MIN_VALUE)); values.put(java.math.BigInteger.class, new java.math.BigInteger("0")); values.put(java.math.BigDecimal.class, new java.math.BigDecimal(new java.math.BigInteger("0"), 38)); return values; } /** * INTERNAL: * Produce a DataReadQuery which updates(!) the sequence number in the db * and returns it. Currently implemented on Oracle only. * @param sequenceName Name known by Oracle to be a defined sequence */ public ValueReadQuery buildSelectQueryForNativeSequence(String seqName, Integer size) { return new ValueReadQuery("SELECT " + getQualifiedSequenceName(seqName) + ".NEXTVAL FROM DUAL"); } /** * INTERNAL: * Prepend sequence name with table qualifier (if any) */ protected String getQualifiedSequenceName(String seqName) { if (getTableQualifier().equals("")) { return seqName; } else { return getTableQualifier() + "." + seqName; } } /** * INTERNAL: * Create the outer join operator for this platform */ protected ExpressionOperator operatorOuterJoin() { ExpressionOperator result = new ExpressionOperator(); result.setSelector(ExpressionOperator.EqualOuterJoin); Vector v = new Vector(2); v.addElement(" (+) = "); result.printsAs(v); result.bePostfix(); result.setNodeClass(RelationExpression.class); return result; } /** * INTERNAL: * Override the default locate operator */ protected ExpressionOperator operatorLocate() { ExpressionOperator result = new ExpressionOperator(); result.setSelector(ExpressionOperator.Locate); Vector v = new Vector(3); v.addElement("INSTR("); v.addElement(", "); v.addElement(")"); result.printsAs(v); result.bePrefix(); result.setNodeClass(RelationExpression.class); return result; } /** * INTERNAL: * Override the default locate operator */ protected ExpressionOperator operatorLocate2() { ExpressionOperator result = new ExpressionOperator(); result.setSelector(ExpressionOperator.Locate2); Vector v = new Vector(4); v.addElement("INSTR("); v.addElement(", "); v.addElement(", "); v.addElement(")"); result.printsAs(v); result.bePrefix(); result.setNodeClass(RelationExpression.class); return result; } /** * INTERNAL: * Append the receiver's field 'NULL' constraint clause to a writer. */ public void printFieldNullClause(Writer writer) throws ValidationException { try { writer.write(" NULL"); } catch (IOException ioException) { throw ValidationException.fileError(ioException); } } /** * INTERNAL: * Return the current date and time from the server. */ public String serverTimestampString() { return "SYSDATE"; } /** * INTERNAL: * Set a primitive parameter. */ public void setPrimitiveParameterValue(final PreparedStatement statement, final int index, final Object parameter) throws SQLException { if (parameter instanceof java.sql.Date) { //Essentials Bug#1878 - Fix the bug that the wrong date is entered into the oracle database //when the timezone is Korea/Seoul. The bug is fixed by caculating the date with the default //timezone, which is that of the virtual machine running the application. statement.setDate(index,(java.sql.Date)parameter,null); } else { statement.setObject(index, parameter); } } /** * INTERNAL: * Some database require outer joins to be given in the where clause, others require it in the from clause. */ public boolean shouldPrintOuterJoinInWhereClause() { return true; } /** * INTERNAL: * JDBC defines and outer join syntax, many drivers do not support this. So we normally avoid it. */ public boolean shouldUseJDBCOuterJoinSyntax() { return false; } /** * INTERNAL: * Return true if the receiver uses host sequence numbers, generated on the database. * Oracle does through global sequence objects. */ public boolean supportsNativeSequenceNumbers() { return true; } /** * INTERNAL: */ public boolean supportsStoredFunctions() { return true; } /** * INTERNAL: * Returns true if the database supports SQL syntax not to wait on a SELECT..FOR UPADTE * (i.e. In Oracle adding NOWAIT to the end will accomplish this) */ public boolean supportsSelectForUpdateNoWait() { return true; } /** * INTERNAL: * Create the sysdate operator for this platform */ protected ExpressionOperator todayOperator() { return ExpressionOperator.simpleFunctionNoParentheses(ExpressionOperator.Today, "SYSDATE"); } protected ExpressionOperator currentDateOperator() { return ExpressionOperator.simpleFunctionNoParentheses(ExpressionOperator.CurrentDate, "TO_DATE(CURRENT_DATE)"); } protected ExpressionOperator currentTimeOperator() { return ExpressionOperator.simpleFunctionNoParentheses(ExpressionOperator.CurrentTime, "SYSDATE"); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy