The ORM features:
- framework has a type safe query language which allows the java compiler find a syntax error similar like a 4GL language
- never more a LazyInitialization exception though a lazy initialization is supported
- no confusing proxy business objects
- no list properties are supported but a special object called UjoIterator is designed for a collection. The UjoIterator provides a toList() method for example
- easy to configure the ORM model by java source code, optionally by annotations or a XML file
- great performance, e.g. multi SELECT is eight times faster in comparison with Hibernate
- small size of JAR file and no more library dependencies
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The ORM features:
- framework has a type safe query language which allows the java compiler find a syntax error similar like a 4GL language
- never more a LazyInitialization exception though a lazy initialization is supported
- no confusing proxy business objects
- no list properties are supported but a special object called UjoIterator is designed for a collection. The UjoIterator provides a toList() method for example
- easy to configure the ORM model by java source code, optionally by annotations or a XML file
- great performance, e.g. multi SELECT is eight times faster in comparison with Hibernate
- small size of JAR file and no more library dependencies