I have been reading all about converting TEXT fields into date formats and ways to use Python to create date objects but my question remains.
My table has a dateTime column that is specified as TEXT, I would like to build a constraint that forces input to be in dateTime format, but as SQLite doesn't do dates (as I would like) I haven't worked out how to do it.
My current ideas: 1. Limit number of characters 2. Set separate attributes for day, month and year and constrain their domains 3. It is silly to do this on the database side just do it in the user interface
I would appreciate your opinions on these or other options. Thanks :)