public class OracleAdapter extends AbstractAdapter
ADAPTER_KEY, AUTODETECT_ADAPTER, DRIVER_KEY
Modifier | Constructor and Description |
---|---|
protected |
OracleAdapter()
Empty constructor.
|
Modifier and Type | Method and Description |
---|---|
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 SQL used to get the most recently inserted primary key.
|
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.
|
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.
|
boolean |
useMinusForExcept()
Whether to use the MINUS operator instead of the EXCEPT operator.
|
getStringDelimiter, getUpdateLockClause, ignoreCaseInOrderBy, setCapabilities, supportsNativeLimit, supportsNativeOffset, useGetGeneratedKeys, useIlike
public String toUpperCase(String in)
toUpperCase
in interface Adapter
toUpperCase
in class AbstractAdapter
in
- The string to transform to upper case.public String ignoreCase(String in)
ignoreCase
in interface Adapter
ignoreCase
in class AbstractAdapter
in
- The string whose case to ignore.public IDMethod getIDMethodType()
AbstractAdapter
IDMethod
interface denoting which
type of primary key generation method this type of RDBMS uses.getIDMethodType
in interface Adapter
getIDMethodType
in class AbstractAdapter
Adapter.getIDMethodType()
public String getIDMethodSQL(Object sequenceName)
AbstractAdapter
null
.getIDMethodSQL
in interface Adapter
getIDMethodSQL
in class AbstractAdapter
sequenceName
- The name of the sequence (should be of type String
).Returns the next key from a sequence. Uses the following
implementation:
select sequenceName.nextval from dual
,
Adapter.getIDMethodSQL(Object)
public void lockTable(Connection con, String table) throws SQLException
lockTable
in interface Adapter
lockTable
in class AbstractAdapter
con
- The JDBC connection to use.table
- The name of the table to lock.SQLException
- No Statement could be created or executed.public void unlockTable(Connection con, String table) throws SQLException
unlockTable
in interface Adapter
unlockTable
in class AbstractAdapter
con
- The JDBC connection to use.table
- The name of the table to unlock.SQLException
- No Statement could be created or executed.public void generateLimits(Query query, long offset, int limit)
SELECT B.* FROM ( SELECT A.*, rownum as TORQUE$ROWNUM FROM ( query ) A ) B WHERE B.TORQUE$ROWNUM > offset AND B.TORQUE$ROWNUM <= offset + limit
generateLimits
in interface Adapter
generateLimits
in class AbstractAdapter
query
- The query to modifyoffset
- the offset Valuelimit
- the limit Valuepublic boolean escapeText()
escapeText
in interface Adapter
escapeText
in class AbstractAdapter
public boolean useEscapeClauseForLike()
true
.useEscapeClauseForLike
in interface Adapter
useEscapeClauseForLike
in class AbstractAdapter
public boolean useMinusForExcept()
true
.useMinusForExcept
in interface Adapter
useMinusForExcept
in class AbstractAdapter
Copyright © 2000–2020 The Apache Software Foundation. All rights reserved.