So, I would like Peewee to minimize the possibility to reproduce this error (while trying to reduce the extra work on Peewee to a minimum) by: Adding new formats in https://github.com/coleifer/peewee/blob/master/peewee.py#L4971-L4975 to support isoformatted dates the same way as the...
I am using peewee 3.8.0. Is this intended behaviour?As a workaround I'm using a try/except clause in combination with an insert statement (the more common operation), but this of course means two queries to the database in case of conflict. Are there any more efficient workarounds, ...
I have already created the database, and a table 'staff', with the corresponding fields username and points. However, when I try to run my script, I get the following error: Traceback (most recent call last): File "C:\Python34\lib\site-packages\peewee.py", line 3191, in execute_sq...