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
SQL: CREATE TABLE IF NOT EXISTS Test (dt TEXT NOT NULL)
SQL: INSERT INTO Test (dt) VALUES ('2020-11-05T12:15:13.617164')
SQL: SELECT MAX(Test.dt) FROM Test
The text was updated successfully, but these errors were encountered:
Kotlin Version: 1.4.20-M1 - Exposed Version : 0.28.1 - Sqlite jdbc version : 3.32.3.2
I am trying to get the max value of timestamp column from a table in Sqlite and got the following exception:
java.time.format.DateTimeParseException: Text '2020-11-05 12:15:13.617' could not be parsed at index 10
And here is the test that reproduce the issue:
And here is the output of the SQL Logger
The text was updated successfully, but these errors were encountered: