You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.
C:\Python3\lib\site-packages\sqlalchemy\sql\sqltypes.py:603: SAWarning: Dialect sqlite+pysqlite does *not* support Decimal objects natively, and SQLAlchemy must convert from floating point - rounding errors and other issues may occur. Please consider storing Decimal numbers as strings or integers on this platform for lossless storage.
'storage.' % (dialect.name, dialect.driver))
SQLAlchemy complains about SQLite not having great handling for Decimal columns. We can add a TypeDecorator to fix this, but since it seems to be working right now, this is low priority.
The text was updated successfully, but these errors were encountered:
SQLAlchemy complains about SQLite not having great handling for
Decimal
columns. We can add aTypeDecorator
to fix this, but since it seems to be working right now, this is low priority.The text was updated successfully, but these errors were encountered: