Does it mean that i need to change the field name from condition to anything else...or the argument check_reserved=['all'] allows to use the reserved keywords. The manual says it checks for the reserved keywords, but didn't understand whether it will block or skip these keywords.
And one more thing this table is part of a working mysql database. I am integrating it into web2py. On Friday, 28 December 2012 12:19:22 UTC+5:30, rochacbruno wrote: > > > > On Fri, Dec 28, 2012 at 4:46 AM, ajith c t <[email protected]<javascript:> > > wrote: > >> condition > > > condition is a MySQL reserved keyword, you can't use this as the name of > table or field > > http://dev.mysql.com/doc/refman/5.5/en/reserved-words.html > > To solve this kinf od problems. > > db = DAL("mysql....", check_reserved=["all"]) > --

