How to deal with error OverflowError: Python int too large to convert to SQLite INTEGER?
I use peewee to interact with the database
peewee.IntegerField()
can't change
1 answer
1. Use the text box for storage. Just do a type conversion.
2. To use a more appropriate database (Postgres, MySQL)
Find more questions by tags SQLitePython