http://qs321.pair.com?node_id=1044147


in reply to Re: Need help in Perl DBI (SQLite) execute behaviour
in thread Need help in Perl DBI (SQLite) execute behaviour

Hi poj

Great. This works as expected. From DBI doc, I understand that DBI will do the type conversion for me from scalar automatically. Looks like in this case I need to do it manually. But why only for RHS? because LHS is doing addition, so it is converted to INTEGER automatically?

Thanks :)

Thanks & Regards,
Bakkiaraj M
My Perl Gtk2 technology demo project - http://code.google.com/p/saaral-soft-search-spider/ , contributions are welcome.

Replies are listed 'Best First'.
Re^3: Need help in Perl DBI (SQLite) execute behaviour
by poj (Abbot) on Jul 13, 2013 at 15:42 UTC
    Is your database field creationTime type INTEGER ?.

    You might find this statement works

    DELETE FROM session WHERE creationTime < ?

    if you make the parameter

    (time() - SESSION_MAX_LIFE_TIME)

    which I think is easier to understand

    poj