I don't like how SQLAlchemy handles datetime values with sqlite databases. It saves values in a simple string format. At the same time, sqlite recommends using julianday to store date and time values.
Is there an easy way to change the behavior of SQLAlchemy?
PS. Should I worry about this? Maybe no one is dealing with julianday just because he is not needed?
source
share