The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Revision history for Perl extension SQL::Maker

0.13

    - In SQL::Maker
        - Allow 'INSERT IGNORE' by $opts->{prefix} params at insert() method (zigorou)
        - Accept key-value as array at insert() method (zigorou)
        - Accept value using subquery at insert(), update() method (zigorou)
        - Allow table alias at select() method (zigorou)
    - In SQL::Maker::Plugin::InsertMulti
        - Accept values as arrayref at insert_multi() (zigorou)
        - Allow 'INSERT IGNORE' by $opts->{prefix} params at insert_multi() (zigorou)
        - Allow literal and subquery in values at insert_multi() (zigorou)
        - Supports 'ON DUPLICATE KEY UPDATE' syntax on mysql driver at insert_multi() (zigorou)
    - In SQL::Maker::Select
        - Allow no conditional join (zigorou)

0.12

    SQL::Maker::Plugin::InsertMulti before 0.12 have a critical issue.
    I highly recomment version up to 0.12+, if you are using SQL::Maker::Plugin::InsertMulti.

    - FIX: SQL::Maker::Plugin::InsertMulti doesn't works correctly.
    - doc fix on SQL::Maker::Plugin::InsertMulti

0.11

    - added SQL::Maker#new_condition method(nekokak)

0.10

    - support union, intersect, except(makamaka)

0.09

    - allow SELECT object and alias to add_join(makamaka)

0.08

    - doc enhancements(tokuhirom)
    - support $builder->select(order_by => {foo => 'DESC'}) form for skinny

0.07

    - allow subquery in from clause(makamaka)

0.06

    - allow hashref in new_select() method

0.05

    - doc fix(lestrrat)

0.04

    - add space each comma on using IN statement(zigorou)

0.03

    - 60ded52 (HEAD, zigorou/master, origin/master, master) remove last new_line on as_sql(), add tests for different new args(zigorou++)
    - 1d54a09 add new_line opts to SQL::Maker, SQL::Maker::Select(zigorou++)
    - 0b84cd7 change the quote_char detection logic. see http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt

0.02

        - added new method 'new_select'.
        - pod fix

0.01    Sat Nov 27 11:37:12 2010
        - original version