Class OracleFactory
java.lang.Object
org.castor.cpa.persistence.sql.driver.BaseFactory
org.castor.cpa.persistence.sql.driver.GenericFactory
org.castor.cpa.persistence.sql.driver.OracleFactory
- All Implemented Interfaces:
PersistenceFactory
PersistenceFactory for Oracle 7/8 driver.- Version:
- $Revision: 8377 $ $Date: 2006-04-25 15:08:23 -0600 (Tue, 25 Apr 2006) $
- Author:
- Assaf Arkin
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionClass<?> adjustSqlType(Class<?> sqlType) For INTEGER type ResultSet.getObject() returns BigDecimal: dependent objects with integer identity cause type conversion error (need to fix SimpleQueryExecutor).getCallQuery(String call, Class<?>[] paramTypes, Class<?> javaClass, String[] fields, int[] sqlTypes) Needed to process OQL queries of "CALL" type (using stored procedure call).Returns the name of this factory.Returns a new empty query expression suitable for the underlying SQL engine.getSequenceBeforeSelectString(String seqName, String tableName, int increment) Returns the database specific SELECT query string for fetching identity before the next INSERT statement gets executed.getSequenceNextValString(String seqName) Returns the database engine specific string to fetch sequence next value.booleanisKeyGeneratorSequenceSupported(boolean returning, boolean trigger) Does persistence factory support generation of new key at the time of new object creation with sequence key generator?booleanisKeyGeneratorSequenceTypeSupported(int type) Does Sequence key generator support generation of key for the given SQL type?Returns the quoted identifier suitable for preventing conflicts between database identifiers and reserved keywords.Methods inherited from class org.castor.cpa.persistence.sql.driver.GenericFactory
doubleQuoteName, getIdentitySelectString, getSequenceAfterSelectString, isKeyGeneratorIdentitySupported, isKeyGeneratorIdentityTypeSupportedMethods inherited from class org.castor.cpa.persistence.sql.driver.BaseFactory
getKeyGenerator, getPersistence
-
Field Details
-
FACTORY_NAME
- See Also:
-
-
Constructor Details
-
OracleFactory
public OracleFactory()
-
-
Method Details
-
getFactoryName
Description copied from interface:PersistenceFactoryReturns the name of this factory. A descriptive name that indicates the type of supported database server or SQL syntax.- Specified by:
getFactoryNamein interfacePersistenceFactory- Overrides:
getFactoryNamein classGenericFactory- Returns:
- The name of this factory
-
getQueryExpression
Description copied from interface:PersistenceFactoryReturns a new empty query expression suitable for the underlying SQL engine. The implementation will construct SQL query statements in the preferred syntax.- Specified by:
getQueryExpressionin interfacePersistenceFactory- Overrides:
getQueryExpressionin classGenericFactory- Returns:
- New empty query expression
-
quoteName
Description copied from interface:PersistenceFactoryReturns the quoted identifier suitable for preventing conflicts between database identifiers and reserved keywords.- Specified by:
quoteNamein interfacePersistenceFactory- Overrides:
quoteNamein classGenericFactory- Parameters:
name- The identifier (table, column, etc)- Returns:
- The quoted identifier
-
getCallQuery
public PersistenceQuery getCallQuery(String call, Class<?>[] paramTypes, Class<?> javaClass, String[] fields, int[] sqlTypes) Needed to process OQL queries of "CALL" type (using stored procedure call). This feature is specific for JDO.- Specified by:
getCallQueryin interfacePersistenceFactory- Overrides:
getCallQueryin classBaseFactory- Parameters:
call- Stored procedure call (without "{call")paramTypes- The types of the query parametersjavaClass- The Java class of the query resultsfields- The field namessqlTypes- The field SQL types- Returns:
- null if this feature is not supported.
-
adjustSqlType
For INTEGER type ResultSet.getObject() returns BigDecimal: dependent objects with integer identity cause type conversion error (need to fix SimpleQueryExecutor).- Specified by:
adjustSqlTypein interfacePersistenceFactory- Overrides:
adjustSqlTypein classBaseFactory- Parameters:
sqlType- The correspondent Java class for the SQL type in mapping.xml- Returns:
- The correspondent Java class for the SQL type that should be used instead.
-
isKeyGeneratorSequenceSupported
public boolean isKeyGeneratorSequenceSupported(boolean returning, boolean trigger) Description copied from class:GenericFactoryDoes persistence factory support generation of new key at the time of new object creation with sequence key generator?- Specified by:
isKeyGeneratorSequenceSupportedin interfacePersistenceFactory- Overrides:
isKeyGeneratorSequenceSupportedin classGenericFactory- Parameters:
returning- Return generated key value with insert statement?trigger- Use a database trigger to generate key?- Returns:
trueif persistence factory is able to generate key with sequence key generator,falseotherwise.
-
isKeyGeneratorSequenceTypeSupported
public boolean isKeyGeneratorSequenceTypeSupported(int type) Does Sequence key generator support generation of key for the given SQL type?- Specified by:
isKeyGeneratorSequenceTypeSupportedin interfacePersistenceFactory- Overrides:
isKeyGeneratorSequenceTypeSupportedin classGenericFactory- Parameters:
type- SQL type to check for support by sequence key generator.- Returns:
trueif persistence factory is able to generate key of given SQL type with sequence key generator,falseotherwise.
-
getSequenceNextValString
Description copied from class:GenericFactoryReturns the database engine specific string to fetch sequence next value.- Specified by:
getSequenceNextValStringin interfacePersistenceFactory- Overrides:
getSequenceNextValStringin classGenericFactory- Parameters:
seqName- Name of the sequence.- Returns:
- String to fetch sequence next value.
-
getSequenceBeforeSelectString
Description copied from class:GenericFactoryReturns the database specific SELECT query string for fetching identity before the next INSERT statement gets executed.- Specified by:
getSequenceBeforeSelectStringin interfacePersistenceFactory- Overrides:
getSequenceBeforeSelectStringin classGenericFactory- Parameters:
seqName- Name of sequence.tableName- Name of the table from which identity will be fetched.increment- Increment value used in Interbase database engine.- Returns:
- SELECT sql string
-