In webpy db module I have a query:
db().query("select * from table where column in ($ERROR_LIST)",
vars=dict(ERROR_LIST=ERROR_LIST)).list()
There is no issue with this query if the ERROR_LIST is just a variable. But my requirement is that the ERROR_LIST must be list of error values. Is there a way to handle list in webpy DB module or is there any other way to do the job?