Hello, I am using web2py 1.98.2.
The problem is that below instruction fails with error message: "TypeError: insert() keywords must be strings" db.table.insert(**dictionary) While db(query).update(**dictionary) works find. For now, I have to use as a workaround as below. bulk_insert( [dictionary] ) What would be wrong?