Added support for lists in db queries.
http://github.com/webpy/webpy/commit/686aafab4c1c5d0e438b4b36fab3d14d121ef99f
Example usage:
>>> db.query('SELECT * FROM table WHERE id IN $ids', vars={'ids': [1, 2, 3]},
>>> _test=True)
<sql: 'SELECT * FROM table WHERE id IN (1, 2, 3)'>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"web.py" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [email protected]
For more options, visit this group at http://groups.google.com/group/webpy?hl=en
-~----------~----~----~----~------~----~------~--~---