* CORE: Fixed a couple of missing field configuration entries. Thanks to Jeremy Stone. Bug #3518474.
* CORE: Fixed a problem that was causing FieldType to always use reflection. Thanks to Jeremy Stone. Bug #3518472.
You can get the release via ORMLite:
or via Maven once the sync finishes:
http://repo1.maven.org/maven2/com/j256/ormlite/
Or from sourceforge.net. Feedback always welcome.
gray
In all cases where a class has a foreign field, reflection was being used to find the id field of the foreign field. Not good. This has been fixed and along the way the internal handling of DAOs that recursively create other DAOs (with foreign collections for example), has been improved. Anyone using the table-config files under Android with foreign fields should see a performance boost.
In addition, there were some fields from @ForeignCollectionField that were not properly being written or read from the table config files. You should make sure that you re-run your DatabaseConfigUtil programs after upgrading.
As always, feedback on the release is encouraged,
gray