Uses of Class
org.apache.ddlutils.dynabean.SqlDynaClass

Packages that use SqlDynaClass
org.apache.ddlutils.dynabean Provides the special DdlUtils implementations of DynaClass and DynaBean that directly map to tables in the database model. 
org.apache.ddlutils.model This package contains the classes making up the database model. 
org.apache.ddlutils.platform This package contains the platform implementations for the individual databases. 
 

Uses of SqlDynaClass in org.apache.ddlutils.dynabean
 

Methods in org.apache.ddlutils.dynabean that return SqlDynaClass
 SqlDynaClass DynaClassCache.getDynaClass(org.apache.commons.beanutils.DynaBean dynaBean)
          Returns the SqlDynaClass for the given bean.
 SqlDynaClass DynaClassCache.getDynaClass(Table table)
          Returns the SqlDynaClass for the given table.
static SqlDynaClass SqlDynaClass.newInstance(Table table)
          Factory method for creating and initializing a new dyna class instance for the given table.
 

Uses of SqlDynaClass in org.apache.ddlutils.model
 

Methods in org.apache.ddlutils.model that return SqlDynaClass
 SqlDynaClass Database.getDynaClassFor(org.apache.commons.beanutils.DynaBean bean)
          Returns the SqlDynaClass for the given dyna bean.
 SqlDynaClass Database.getDynaClassFor(java.lang.String tableName)
          Returns the SqlDynaClass for the given table name.
 

Uses of SqlDynaClass in org.apache.ddlutils.platform
 

Methods in org.apache.ddlutils.platform with parameters of type SqlDynaClass
protected  java.lang.String PlatformImplBase.createDeleteSql(Database model, SqlDynaClass dynaClass, SqlDynaProperty[] primaryKeys, org.apache.commons.beanutils.DynaBean bean)
          Creates the SQL for deleting an object of the given type.
protected  java.lang.String PlatformImplBase.createInsertSql(Database model, SqlDynaClass dynaClass, SqlDynaProperty[] properties, org.apache.commons.beanutils.DynaBean bean)
          Creates the SQL for inserting an object of the given type.
protected  java.lang.String PlatformImplBase.createSelectLastInsertIdSql(Database model, SqlDynaClass dynaClass)
          Creates the SQL for querying for the id generated by the last insert of an object of the given type.
protected  java.lang.String PlatformImplBase.createUpdateSql(Database model, SqlDynaClass dynaClass, SqlDynaProperty[] primaryKeys, SqlDynaProperty[] properties, org.apache.commons.beanutils.DynaBean bean)
          Creates the SQL for updating an object of the given type.
 



Copyright © 2005-2010 Apache Software Foundation. All Rights Reserved.