-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why sqlite3 date type not support? #627
Comments
There is no date type in sqlite3. See https://www.sqlite.org/datatype3.html and see #190 for more information on usage of dates.
Make sure to look at #190 to see why you might be having trouble. By default, there is no type affinity for datetime, so you need to cast it to text. |
thanks. I'm sorry about the issue. |
No problem. It's confusing that sqlite doesn't have a type for it. It makes sense since everyone implements numbers different ways and many applications need to have a local database that has compatible formats with the server's database but... it still makes thinking about it a lot more complex because it's one more thing to remember. |
Any schedules please?
The text was updated successfully, but these errors were encountered: