EoD SQL 2.1-Beta has been released, you can go download it from the Documents & Files section of the homepage. The 2.1 release is about improving speed and usability over the 2.0 release. Some of the new features included are:
- Specific Collection implementations (including those not in the standard Java API’s) can now be returned:
@Select("SELECT * FROM users WHERE group = ?{1.id}") ArrayList<User> selectUserGroup(Group group); - Select methods can now populate existing objects:
@Select(sql="SELECT * FROM user_meta_info WHERE user_id = ?{1.id}",into=1) void selectMetaInfo(User user); - Faster construction of query implementations
- Better error reporting
- Several small bug fixes
This is of course a beta release, so there may be bugs. That said the code is pretty well unit tested and should be relatively stable. One new feature not in the release (but on the way) is batch updates. Stay tuned for more information!