in reply to SQL::Abstract::More overloads the SQL::Abstract API

For info, the new API is just an addition to the old API. Compatibility with the old-style positional API is preserved. The only possible collision would be if you call select($source, ...) where $source is a scalar and starts with a hyphen ... very unlikely, I'm not even sure that this would be a valid SQL table name

  • Comment on Re: SQL::Abstract::More overloads the SQL::Abstract API

Replies are listed 'Best First'.
Re^2: SQL::Abstract::More overloads the SQL::Abstract API
by dragonchild (Archbishop) on Oct 19, 2011 at 12:51 UTC
    It's valid, just not recommended.

    My criteria for good software:
    1. Does it work?
    2. Can someone else come in, make a change, and be reasonably certain no bugs were introduced?