org.apache.torque.adapter
Class OracleAdapter

java.lang.Object
  extended by org.apache.torque.adapter.AbstractAdapter
      extended by org.apache.torque.adapter.OracleAdapter
All Implemented Interfaces:
Serializable, Adapter

public class OracleAdapter
extends AbstractAdapter

This code should be used for an Oracle database pool.

Version:
$Id: OracleAdapter.java 1355228 2012-06-29 03:38:08Z tfischer $
Author:
Jon S. Stevens, Brett McLaughlin, Bill Schneider, Daniel Rall
See Also:
Serialized Form

Field Summary
 
Fields inherited from interface org.apache.torque.adapter.Adapter
ADAPTER_KEY, AUTODETECT_ADAPTER, DRIVER_KEY
 
Constructor Summary
protected OracleAdapter()
          Empty constructor.
 
Method Summary
 boolean escapeText()
          This method is for the SqlExpression.quoteAndEscape rules.
 void generateLimits(Query query, long offset, int limit)
          Build Oracle-style query with limit or offset.
 String getIDMethodSQL(Object sequenceName)
          Returns the next key from a sequence.
 IDMethod getIDMethodType()
          Returns the constant from the IDMethod interface denoting which type of primary key generation method this type of RDBMS uses.
 String ignoreCase(String in)
          This method is used to ignore case.
 void lockTable(Connection con, String table)
          Locks the specified table.
 boolean supportsNativeLimit()
          Return true for Oracle
 boolean supportsNativeOffset()
          Return true for Oracle
 String toUpperCase(String in)
          This method is used to ignore case.
 void unlockTable(Connection con, String table)
          Unlocks the specified table.
 boolean useEscapeClauseForLike()
          Whether an escape clause in like should be used.
 
Methods inherited from class org.apache.torque.adapter.AbstractAdapter
getStringDelimiter, ignoreCaseInOrderBy, toTorqueException, useIlike
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OracleAdapter

protected OracleAdapter()
Empty constructor.

Method Detail

toUpperCase

public String toUpperCase(String in)
This method is used to ignore case.

Specified by:
toUpperCase in interface Adapter
Specified by:
toUpperCase in class AbstractAdapter
Parameters:
in - The string to transform to upper case.
Returns:
The upper case string.

ignoreCase

public String ignoreCase(String in)
This method is used to ignore case.

Specified by:
ignoreCase in interface Adapter
Specified by:
ignoreCase in class AbstractAdapter
Parameters:
in - The string whose case to ignore.
Returns:
The string in a case that can be ignored.

getIDMethodType

public IDMethod getIDMethodType()
Description copied from class: AbstractAdapter
Returns the constant from the IDMethod interface denoting which type of primary key generation method this type of RDBMS uses.

Specified by:
getIDMethodType in interface Adapter
Specified by:
getIDMethodType in class AbstractAdapter
Returns:
IDMethod constant
See Also:
Adapter.getIDMethodType()

getIDMethodSQL

public String getIDMethodSQL(Object sequenceName)
Returns the next key from a sequence. Uses the following implementation:
 select sequenceName.nextval from dual
 

Specified by:
getIDMethodSQL in interface Adapter
Specified by:
getIDMethodSQL in class AbstractAdapter
Parameters:
sequenceName - The name of the sequence (should be of type String).
Returns:
SQL to retreive the next database key.
See Also:
Adapter.getIDMethodSQL(Object)

lockTable

public void lockTable(Connection con,
                      String table)
               throws SQLException
Locks the specified table.

Specified by:
lockTable in interface Adapter
Specified by:
lockTable in class AbstractAdapter
Parameters:
con - The JDBC connection to use.
table - The name of the table to lock.
Throws:
SQLException - No Statement could be created or executed.

unlockTable

public void unlockTable(Connection con,
                        String table)
                 throws SQLException
Unlocks the specified table.

Specified by:
unlockTable in interface Adapter
Specified by:
unlockTable in class AbstractAdapter
Parameters:
con - The JDBC connection to use.
table - The name of the table to unlock.
Throws:
SQLException - No Statement could be created or executed.

supportsNativeLimit

public boolean supportsNativeLimit()
Return true for Oracle

Specified by:
supportsNativeLimit in interface Adapter
Overrides:
supportsNativeLimit in class AbstractAdapter
Returns:
true if the database natively supports limiting the size of the resultset.
See Also:
AbstractAdapter.supportsNativeLimit()

supportsNativeOffset

public boolean supportsNativeOffset()
Return true for Oracle

Specified by:
supportsNativeOffset in interface Adapter
Overrides:
supportsNativeOffset in class AbstractAdapter
Returns:
true if the database natively supports returning results starting at an offset position other than 0.
See Also:
AbstractAdapter.supportsNativeOffset()

generateLimits

public void generateLimits(Query query,
                           long offset,
                           int limit)
Build Oracle-style query with limit or offset. If the original SQL is in variable: query then the requlting SQL looks like this:
 SELECT B.* FROM (
          SELECT A.*, rownum as TORQUE$ROWNUM FROM (
                  query
          ) A
     ) B WHERE B.TORQUE$ROWNUM > offset AND B.TORQUE$ROWNUM
     <= offset + limit
 

Specified by:
generateLimits in interface Adapter
Overrides:
generateLimits in class AbstractAdapter
Parameters:
query - The query to modify
offset - the offset Value
limit - the limit Value

escapeText

public boolean escapeText()
This method is for the SqlExpression.quoteAndEscape rules. The rule is, any string in a SqlExpression with a BACKSLASH will either be changed to "\\" or left as "\". SapDB does not need the escape character.

Specified by:
escapeText in interface Adapter
Overrides:
escapeText in class AbstractAdapter
Returns:
false.

useEscapeClauseForLike

public boolean useEscapeClauseForLike()
Whether an escape clause in like should be used. Example : select * from AUTHOR where AUTHOR.NAME like '\_%' ESCAPE '\'; Oracle needs this, so this implementation always returns true.

Specified by:
useEscapeClauseForLike in interface Adapter
Overrides:
useEscapeClauseForLike in class AbstractAdapter
Returns:
whether the escape clause should be appended or not.


Copyright © 2000-2012 The Apache Software Foundation. All Rights Reserved.