Release Name: 0.2.0
Notes:
** Added support for DB2 LUW and iSeries. DB2 support
requires that you have correctly installed IBM's DB2
adapter. For iSeries support, you must specify
"platform=>iseries" in your DB connection spec or
database.yml (or whatever you use). If you have correctly
specified the iseries platform, DrySQL will indicate this in
the STDERR logs
** Added support for eager loading
** Fixed a bug in has_many association generation. A
has_many B was incorrectly specified with A's foreign key
instead of B's. Obviously this problem only became evident
if A's column and B's column didn't share the same name.
** Significant performance improvements for all supported
databases. Most were in the neighborhood of 90% improvement
** Introduction of ActiveRecord::Base.generate_orm method,
which will generate all your associations and validations
upfront instead of dynamically during your application's
runtime. This approach generally yields better performance
per-model than the dynamic approach. I'm looking forward to
some feedback on this one
Changes:
|