JDBCPersistence Technology Preview Release
Date: 25 Aug 2006 10:12:04 -0700
Message-ID: <1156525924.647539.40350_at_i3g2000cwc.googlegroups.com>
Hi all,
I have just released a technology preview of JDBCPersistence project. JDBCPersistence is an ORM framework designed and implemented to deliver performance of hand written JDBC code.
Performance is achieved by employing bytecode generation that creates classes that specifically target operation that user requests the framework to do. Such, an insert method generated by the framework, will operate on an instance of a concrete class, reading properties from the bean using straight method calls (not reflection). The values are then being supplied to PreparedStatement using its respective methods eg. setInt(int value, int position), setString(String value, int position) etc, again via straight method calls.
All are welcome to download JDBCPersistence Technology Review Release from http://www.jdbcpersistence.org and don't hesitate to provide feedback and questions via jdbcpersistence -(at gmail com
More information on the internalsof the framework is available at http://www.codegeneration.net/tiki-read_article.php?articleId=67
Thank you. Received on Fri Aug 25 2006 - 19:12:04 CEST