I am using Web.py 0.37, and trying to add a row to my mysql database. Here is my code:
com.globals.db.insert('users', email=data.email, fullname=data.fullname, password=pwh, _test=False)
And this is the output (in the debugger window):
0.09 (2): INSERT INTO users (fullname, password, email) VALUES ('Juan', 'f3bab99...d05cee4', 'no@email.com')
0.09 (3): SELECT last_insert_id();
30
I can see the id field incrementing, but when I check the database, there is no new rows created. Why is this happening? The outputted sql statement executes fine in the mysql terminal.