|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.springframework.jdbc.core.metadata.TableMetaDataContext
public class TableMetaDataContext
Class to manage context metadata used for the configuration and execution of operations on a database table.
Field Summary | |
---|---|
protected org.apache.commons.logging.Log |
logger
Logger available to subclasses |
Constructor Summary | |
---|---|
TableMetaDataContext()
|
Method Summary | |
---|---|
java.lang.String |
createInsertString(java.lang.String[] generatedKeyNames)
Build the insert string based on configuration and metadata information |
int[] |
createInsertTypes()
Build the array of Types based on configuration and metadata information |
java.lang.String |
getCatalogName()
Get the name of the catalog for this context. |
java.lang.String |
getSchemaName()
Get the name of the schema for this context. |
java.lang.String |
getSimulationQueryForGetGeneratedKey(java.lang.String tableName,
java.lang.String keyColumnName)
Does this database support simple query to retrieve generated keys when the JDBC 3.0 feature is not supported DatabaseMetaData.supportsGetGeneratedKeys() ? |
java.util.List<java.lang.String> |
getTableColumns()
Get a List of the table column names. |
java.lang.String |
getTableName()
Get the name of the table for this context. |
boolean |
isAccessTableParameterMetaData()
Are we accessing table meta data? |
boolean |
isGeneratedKeysColumnNameArraySupported()
Is a column name String array for retreiving generated keys supported Connection.createStruct(String, Object[]) ? |
boolean |
isGetGeneratedKeysSimulated()
Does this database support simple query to retrieve generated keys when the JDBC 3.0 feature is not supported DatabaseMetaData.supportsGetGeneratedKeys() ? |
boolean |
isGetGeneratedKeysSupported()
Does this database support the JDBC 3.0 feature of retreiving generated keys DatabaseMetaData.supportsGetGeneratedKeys() ? |
java.util.List<java.lang.Object> |
matchInParameterValuesWithInsertColumns(java.util.Map<java.lang.String,java.lang.Object> inParameters)
Match the provided column names and values with the list of columns used. |
java.util.List<java.lang.Object> |
matchInParameterValuesWithInsertColumns(SqlParameterSource parameterSource)
Match the provided column names and values with the list of columns used. |
void |
processMetaData(javax.sql.DataSource dataSource,
java.util.List<java.lang.String> declaredColumns,
java.lang.String[] generatedKeyNames)
Process the current meta data with the provided configuration options |
void |
setAccessTableParameterMetaData(boolean accessTableParameterMetaData)
Specify whether we should access table column meta data. |
void |
setCatalogName(java.lang.String catalogName)
Set the name of the catalog for this context. |
void |
setSchemaName(java.lang.String schemaName)
Set the name of the schema for this context. |
void |
setTableName(java.lang.String tableName)
Set the name of the table for this context. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected final org.apache.commons.logging.Log logger
Constructor Detail |
---|
public TableMetaDataContext()
Method Detail |
---|
public void setTableName(java.lang.String tableName)
public java.lang.String getTableName()
public void setCatalogName(java.lang.String catalogName)
public java.lang.String getCatalogName()
public void setSchemaName(java.lang.String schemaName)
public java.lang.String getSchemaName()
public void setAccessTableParameterMetaData(boolean accessTableParameterMetaData)
public boolean isAccessTableParameterMetaData()
public java.util.List<java.lang.String> getTableColumns()
public boolean isGetGeneratedKeysSupported()
DatabaseMetaData.supportsGetGeneratedKeys()
?
public boolean isGetGeneratedKeysSimulated()
DatabaseMetaData.supportsGetGeneratedKeys()
?
public java.lang.String getSimulationQueryForGetGeneratedKey(java.lang.String tableName, java.lang.String keyColumnName)
DatabaseMetaData.supportsGetGeneratedKeys()
?
public boolean isGeneratedKeysColumnNameArraySupported()
Connection.createStruct(String, Object[])
?
public void processMetaData(javax.sql.DataSource dataSource, java.util.List<java.lang.String> declaredColumns, java.lang.String[] generatedKeyNames)
dataSource
- the DataSource being useddeclaredColumns
- any coluns that are declaredgeneratedKeyNames
- name of generated keyspublic java.util.List<java.lang.Object> matchInParameterValuesWithInsertColumns(SqlParameterSource parameterSource)
parameterSource
- the parameter names and valuespublic java.util.List<java.lang.Object> matchInParameterValuesWithInsertColumns(java.util.Map<java.lang.String,java.lang.Object> inParameters)
inParameters
- the parameter names and valuespublic java.lang.String createInsertString(java.lang.String[] generatedKeyNames)
public int[] createInsertTypes()
Types
based on configuration and metadata information
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |