|
SQL-Interpolate 0.33 is now available. This includes new interpolation functionality as well as design and POD improvements.
0.33 2005-11-10
## SQL::Interpolate
- Build.PL - fixed version syntax so that META.yml is valid.
- Added support for result sets:
[[1, 2], [3, 4]], 'UNION', [{x => 10, y > 11}, {x => 12, y => 13}]
- Added support for temporary table references:
"SELECT * FROM", [[1, 2], [3, 4]], 'JOIN',
[{x => 10, y > 11}, {x => 12, y => 13}]
- Added support for "IS NULL" in
IN: "WHERE", {bla => undef}
OUT: "WHERE bla IS NULL"
Recommended by (slaven) in
http://rt.cpan.org/NoAuth/Bug.html?id=11810
- POD improvements in all modules.
|