Package org.apache.cayenne.dba
Class JdbcAdapter
java.lang.Object
org.apache.cayenne.dba.JdbcAdapter
- All Implemented Interfaces:
DbAdapter
- Direct Known Subclasses:
DB2Adapter
,DerbyAdapter
,FirebirdAdapter
,FrontBaseAdapter
,H2Adapter
,HSQLDBAdapter
,IngresAdapter
,MySQLAdapter
,OpenBaseAdapter
,OracleAdapter
,PostgresAdapter
,SQLiteAdapter
,SybaseAdapter
A generic DbAdapter implementation. Can be used as a default adapter or as a
superclass of a concrete adapter implementation.
-
Field Summary
Modifier and TypeFieldDescriptionprotected BatchTranslatorFactory
Deprecated.since 4.0 BatchQueryBuilderfactory is attached to the DataNode.protected boolean
protected EJBQLTranslatorFactory
protected ExtendedTypeMap
protected JdbcEventLogger
protected QuotingStrategy
protected ResourceLocator
protected boolean
protected boolean
protected boolean
protected TypesHandler
-
Constructor Summary
ConstructorDescriptionJdbcAdapter
(RuntimeProperties runtimeProperties, List<ExtendedType> defaultExtendedTypes, List<ExtendedType> userExtendedTypes, List<ExtendedTypeFactory> extendedTypeFactories, ResourceLocator resourceLocator, ValueObjectTypeRegistry valueObjectTypeRegistry) Creates new JdbcAdapter with a set of default parameters. -
Method Summary
Modifier and TypeMethodDescriptionvoid
bindParameter
(PreparedStatement statement, ParameterBinding binding) Binds an object value to PreparedStatement's parameter.buildAttribute
(String name, String typeName, int type, int size, int scale, boolean allowNulls) Creates and returns a DbAttribute based on supplied parameters (usually obtained from database meta data).protected void
Called frominitExtendedTypes(List, List, List, ValueObjectTypeRegistry)
to load adapter-specific types into the ExtendedTypeMap right after the default types are loaded, but before the DI overrides are.protected EJBQLTranslatorFactory
Creates and returns anEJBQLTranslatorFactory
used to generate visitors for EJBQL to SQL translations.Returns a SQL string that can be used to create a foreign key constraint for the relationship.protected PkGenerator
Deprecated.protected QuotingStrategy
createTable
(DbEntity entity) Returns a SQL string that can be used to create database table corresponding toent
parameter.void
createTableAppendColumn
(StringBuffer sqlBuffer, DbAttribute column) Appends SQL for column creation to CREATE TABLE buffer.protected void
createTableAppendPKClause
(StringBuffer sqlBuffer, DbEntity entity) createUniqueConstraint
(DbEntity source, Collection<DbAttribute> columns) Returns a DDL string to create a unique constraint over a set of columns.dropTableStatements
(DbEntity table) Returns a collection of SQL statements needed to drop a database table.String[]
externalTypesForJdbcType
(int type) Returns an array of RDBMS types that can be used with JDBCtype
.protected URL
findResource
(String name) Locates and returns a named adapter resource.Uses JdbcActionBuilder to create the right action.Returns default separator - a semicolon.Returns a translator factory for EJBQL to SQL translation.Returns a map of ExtendedTypes that is used to translate values between Java and JDBC layer.Returns primary key generator associated with this DbAdapter.Returns SQL identifier quoting strategy objectgetSelectTranslator
(FluentSelect<?> query, EntityResolver entityResolver) getSelectTranslator
(SelectQuery<?> query, EntityResolver entityResolver) Deprecated.static String
getType
(DbAdapter adapter, DbAttribute column) protected void
initExtendedTypes
(List<ExtendedType> defaultExtendedTypes, List<ExtendedType> userExtendedTypes, List<ExtendedTypeFactory> extendedTypeFactories, ValueObjectTypeRegistry valueObjectTypeRegistry) void
setEjbqlTranslatorFactory
(EJBQLTranslatorFactory ejbqlTranslatorFactory) Sets a translator factory for EJBQL to SQL translation.void
setPkGenerator
(PkGenerator pkGenerator) Sets new primary key generator.void
setSupportsBatchUpdates
(boolean flag) void
setSupportsGeneratedKeys
(boolean flag) void
setSupportsUniqueConstraints
(boolean flag) static String
sizeAndPrecision
(DbAdapter adapter, DbAttribute column) boolean
Returnstrue
if the target database supports batch updates.boolean
Returns true.boolean
Returns true if a target database supports key autogeneration.boolean
Returns true.Returns the name of the table type (as returned byDatabaseMetaData.getTableTypes
) for a simple user table.Returns the name of the table type (as returned byDatabaseMetaData.getTableTypes
) for a view table.boolean
typeSupportsLength
(int type) Returns true if supplied type can have a length attribute as a part of column definitionunwrap()
Simply returns this, as JdbcAdapter is not a wrapper.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.cayenne.dba.DbAdapter
supportsGeneratedKeysForBatchInserts
-
Field Details
-
quotingStrategy
-
typesHandler
-
extendedTypes
-
supportsBatchUpdates
protected boolean supportsBatchUpdates -
supportsUniqueConstraints
protected boolean supportsUniqueConstraints -
supportsGeneratedKeys
protected boolean supportsGeneratedKeys -
ejbqlTranslatorFactory
-
resourceLocator
-
caseInsensitiveCollations
protected boolean caseInsensitiveCollations -
batchQueryBuilderFactory
Deprecated.since 4.0 BatchQueryBuilderfactory is attached to the DataNode.- Since:
- 3.1
-
logger
-
-
Constructor Details
-
JdbcAdapter
public JdbcAdapter(RuntimeProperties runtimeProperties, List<ExtendedType> defaultExtendedTypes, List<ExtendedType> userExtendedTypes, List<ExtendedTypeFactory> extendedTypeFactories, ResourceLocator resourceLocator, ValueObjectTypeRegistry valueObjectTypeRegistry) Creates new JdbcAdapter with a set of default parameters.
-
-
Method Details
-
getBatchTerminator
Returns default separator - a semicolon.- Specified by:
getBatchTerminator
in interfaceDbAdapter
- Since:
- 1.0.4
-
getJdbcEventLogger
- Since:
- 3.1
-
findResource
Locates and returns a named adapter resource. A resource can be an XML file, etc.This implementation is based on the premise that each adapter is located in its own Java package and all resources are in the same package as well. Resource lookup is recursive, so that if DbAdapter is a subclass of another adapter, parent adapter package is searched as a failover.
- Since:
- 3.0
-
configureExtendedTypes
Called frominitExtendedTypes(List, List, List, ValueObjectTypeRegistry)
to load adapter-specific types into the ExtendedTypeMap right after the default types are loaded, but before the DI overrides are. This method has specific implementations in JdbcAdapter subclasses. -
initExtendedTypes
protected void initExtendedTypes(List<ExtendedType> defaultExtendedTypes, List<ExtendedType> userExtendedTypes, List<ExtendedTypeFactory> extendedTypeFactories, ValueObjectTypeRegistry valueObjectTypeRegistry) - Since:
- 3.1
-
createPkGenerator
Deprecated.Creates and returns a primary key generator. This factory method should be overriden by JdbcAdapter subclasses to provide custom implementations of PKGenerator. -
createEJBQLTranslatorFactory
Creates and returns anEJBQLTranslatorFactory
used to generate visitors for EJBQL to SQL translations. This method should be overriden by subclasses that need to customize EJBQL generation.- Since:
- 3.0
-
getPkGenerator
Returns primary key generator associated with this DbAdapter.- Specified by:
getPkGenerator
in interfaceDbAdapter
-
setPkGenerator
Sets new primary key generator.- Specified by:
setPkGenerator
in interfaceDbAdapter
- Parameters:
pkGenerator
- to set- Since:
- 1.1
-
supportsUniqueConstraints
public boolean supportsUniqueConstraints()Returns true.- Specified by:
supportsUniqueConstraints
in interfaceDbAdapter
- Since:
- 1.1
-
supportsCatalogsOnReverseEngineering
public boolean supportsCatalogsOnReverseEngineering()Returns true.- Specified by:
supportsCatalogsOnReverseEngineering
in interfaceDbAdapter
- Since:
- 4.0
-
setSupportsUniqueConstraints
public void setSupportsUniqueConstraints(boolean flag) - Since:
- 1.1
-
typeSupportsLength
public boolean typeSupportsLength(int type) Returns true if supplied type can have a length attribute as a part of column definition- Specified by:
typeSupportsLength
in interfaceDbAdapter
- Since:
- 4.0
-
dropTableStatements
Description copied from interface:DbAdapter
Returns a collection of SQL statements needed to drop a database table.- Specified by:
dropTableStatements
in interfaceDbAdapter
- Since:
- 3.0
-
createTable
Returns a SQL string that can be used to create database table corresponding toent
parameter.- Specified by:
createTable
in interfaceDbAdapter
-
createTableAppendPKClause
- Since:
- 1.2
-
createTableAppendColumn
Appends SQL for column creation to CREATE TABLE buffer.- Specified by:
createTableAppendColumn
in interfaceDbAdapter
- Parameters:
sqlBuffer
- theStringBuffer
to append the column type tocolumn
- theDbAttribute
defining the column to append type for- Since:
- 1.2
-
sizeAndPrecision
-
getType
-
createUniqueConstraint
Returns a DDL string to create a unique constraint over a set of columns.- Specified by:
createUniqueConstraint
in interfaceDbAdapter
- Since:
- 1.1
-
createFkConstraint
Returns a SQL string that can be used to create a foreign key constraint for the relationship.- Specified by:
createFkConstraint
in interfaceDbAdapter
-
externalTypesForJdbcType
Description copied from interface:DbAdapter
Returns an array of RDBMS types that can be used with JDBCtype
. Valid JDBC types are defined in java.sql.Types.- Specified by:
externalTypesForJdbcType
in interfaceDbAdapter
-
getExtendedTypes
Description copied from interface:DbAdapter
Returns a map of ExtendedTypes that is used to translate values between Java and JDBC layer.- Specified by:
getExtendedTypes
in interfaceDbAdapter
-
buildAttribute
public DbAttribute buildAttribute(String name, String typeName, int type, int size, int scale, boolean allowNulls) Description copied from interface:DbAdapter
Creates and returns a DbAttribute based on supplied parameters (usually obtained from database meta data).- Specified by:
buildAttribute
in interfaceDbAdapter
- Parameters:
name
- database column nametypeName
- database specific type name, may be used as a hint to determine the right JDBC type.type
- JDBC column typesize
- database column size (ignored if less than zero)scale
- database column scale, i.e. the number of decimal digits (ignored if less than zero)allowNulls
- database column nullable parameter
-
tableTypeForTable
Description copied from interface:DbAdapter
Returns the name of the table type (as returned byDatabaseMetaData.getTableTypes
) for a simple user table.- Specified by:
tableTypeForTable
in interfaceDbAdapter
-
tableTypeForView
Description copied from interface:DbAdapter
Returns the name of the table type (as returned byDatabaseMetaData.getTableTypes
) for a view table.- Specified by:
tableTypeForView
in interfaceDbAdapter
-
getAction
Uses JdbcActionBuilder to create the right action. -
getSelectTranslator
@Deprecated public SelectTranslator getSelectTranslator(SelectQuery<?> query, EntityResolver entityResolver) Deprecated.Description copied from interface:DbAdapter
Returns a SelectTranslator that works with the adapter target database.- Specified by:
getSelectTranslator
in interfaceDbAdapter
-
getSelectTranslator
- Specified by:
getSelectTranslator
in interfaceDbAdapter
-
getSqlTreeProcessor
- Specified by:
getSqlTreeProcessor
in interfaceDbAdapter
- Returns:
SQLTreeProcessor
that can adjust SQL tree to specific database flavour
-
bindParameter
Description copied from interface:DbAdapter
Binds an object value to PreparedStatement's parameter.- Specified by:
bindParameter
in interfaceDbAdapter
- Throws:
Exception
-
supportsBatchUpdates
public boolean supportsBatchUpdates()Description copied from interface:DbAdapter
Returnstrue
if the target database supports batch updates.- Specified by:
supportsBatchUpdates
in interfaceDbAdapter
-
setSupportsBatchUpdates
public void setSupportsBatchUpdates(boolean flag) -
supportsGeneratedKeys
public boolean supportsGeneratedKeys()Description copied from interface:DbAdapter
Returns true if a target database supports key autogeneration. This feature also requires JDBC3-compliant driver.- Specified by:
supportsGeneratedKeys
in interfaceDbAdapter
- Since:
- 1.2
-
setSupportsGeneratedKeys
public void setSupportsGeneratedKeys(boolean flag) - Since:
- 1.2
-
getEjbqlTranslatorFactory
Returns a translator factory for EJBQL to SQL translation. The factory is normally initialized in constructor by callingcreateEJBQLTranslatorFactory()
, and can be changed later by callingsetEjbqlTranslatorFactory(EJBQLTranslatorFactory)
.- Specified by:
getEjbqlTranslatorFactory
in interfaceDbAdapter
- Since:
- 3.0
-
getSystemCatalogs
- Specified by:
getSystemCatalogs
in interfaceDbAdapter
- Returns:
- list of system catalogs
-
getSystemSchemas
- Specified by:
getSystemSchemas
in interfaceDbAdapter
- Returns:
- list of system schemas
-
setEjbqlTranslatorFactory
Sets a translator factory for EJBQL to SQL translation. This property is normally initialized in constructor by callingcreateEJBQLTranslatorFactory()
, so users would only override it if they need to customize EJBQL translation.- Since:
- 3.0
-
createQuotingStrategy
- Since:
- 4.0
-
getQuotingStrategy
Description copied from interface:DbAdapter
Returns SQL identifier quoting strategy object- Specified by:
getQuotingStrategy
in interfaceDbAdapter
- Since:
- 4.0
-
unwrap
Simply returns this, as JdbcAdapter is not a wrapper.
-