@Anthony, I am running it with the Google AppEngine SDK for Python 1.5.5 on Windows7
I've just run into another issue here, with updating the records... When I try to update the table with update_record<http://www.web2py.com/book/default/chapter/06#update_record>, I get a Syntax error saying that there are no fields to update: textobj = db(db.files.hash==name).select().first() if not textobj: textobj_id = db.files.insert(hash=name, name=name, path=name, text="") textobj = db.files[textobj_id] textobj.update_record(text = 'TEST') I didn't get any error when I did it with textobj = db(db.files).select().first(), before...