On Fri, Dec 28, 2012 at 4:46 AM, ajith c t <[email protected]> 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"]) --

