in reply to SQL::Abstract - where clause values that are functions

i don't think it can be done with a placeholder without munging @bind on your own. the alternative is to do the quoting and interpolation yourself, and skip placeholders here.

Replies are listed 'Best First'.
Re^2: SQL::Abstract - where clause values that are functions
by Mutant (Priest) on Sep 13, 2006 at 10:03 UTC
    Adding stuff to @bind is not really an option, I don't think. The problem is the where clause could be built in any order, so you don't know where to put the value in @bind.

    I guess I'll use your second suggestion. Thanks.