All releases tagged Major


Release Notes: The UjoProperty interface extends the CriterionMaker now for a simpler Criterion building. A new annotation parameter called converter can be assigned for a special reading data from/to ResultSet. A new method UjoComparator.sort() is implemented, as well as a better type safe using Java generics. Solid database names of foreign columns name constraints are implemented. The right parameter of Criterion can be an indirect property. The default implementation toString() of the AbstractUjo object is improved.


Release Notes: Java 7.0 is supported now. Native SQL queries can be used in the run-time on demanding requirements. Direct support for the Slf4J Logger framework. A slightly extended API for easier use. A new special interface to store binary content to a BLOB. A new special class (OrmTableSynchronized) is available for safe use in a multi-thread environment. Many other extensions have been implemented. Small bugfixes for some dialects, and some minor bugs are fixed.


Release Notes: The batch INSERT and UPDATE are supported. Select DISTINCT is supported now. Each meta-model table can be marked as READ-ONLY. The documentation Ujorm User Guide is extended and new samples are done. Database commits are executed by order of assigning database models now. Many Ujorm source code cleanups are finished. The constructor new SortingProperty(..) has been replaced by a factory method, PathProperty.sort(..).


Release Notes: A dialect for the MS-SQL database has been implemented. A new native Criterion was implemented with an SQL expression to use on Ujorm query. A new annotation @Comment can be used to describe database tables or columns. The lack of the "ujorm_pk_support" table is no longer incorrectly taken as a sign to create all of the DB structure. The formation of the "ujorm_pk_support" table can be suppressed by overriding the method UjoSequencer.isSequenceTableRequired() in case a different implementation of the ID generator is used. The Ujorm User Guide documentation was extended.


Release Notes: The Ujorm User Guide is complete. A new effective method for bulk loading of lazy attributes: OrmTools.loadLazyValuesAsBatch(). Support for the Spring Framework to manage an ORM session and transactions. Criterion have native support for the IN operator. UjoProperty default value reading is fixed in some cases. JavaDoc is improved.


Release Notes: Stored database procedures are supported. The class Query implements the interface Iterable. Simply mapping a user object to VARCHAR. A new method OrmTools.loadLazyValues(...) to load lazy values to required depth. A new method session.reload(ujo) to reload properties from a database. A new method Criterion.whereNull(..) for simple comparison to the NULL literal. MetaParams supports the "set(..)" value to change values. Checking an open Session is done. Assembling the meta-model is synchronized now. The JavaDoc and Tutorial in the class are improved.


Release Notes: Incremental database updates by meta-model using DDL statements. LIMIT and OFFSET are supported by attributes of the Query. Database indexes are created by the meta-model. Unique/non-unique indexes are supported, including a composed one. A new method to get a foreign key: OrmTable.readPK(property). Checking of SQL keywords.


Release Notes: Enum support is done by mapping to a numeric DB type. Custom Java type mapping is supported by extending the class TypeService. The new method OrmHandler.findPropertiesByTypeClass(Class) for common use is done. Simplified SQL dialect implementations are included, include Oracle support. A new feature is available via the method Sesssion.isRollbackOnly(). The default value for the parameter SEQUENCE_CACHE is 100 (instead of the original 64). Reading a null value from ResultSet is fixed. The MySqlDialect is fixed. An explicit use of the engine 'InnoDB' was implemented.