Open spapas opened 1 month ago
Hello, I've got a table with a "created_on" datetime NOT NULL column. When I read it I get:
"created_on" datetime NOT NULL
(ql:quickload 'sqlite) (defvar *db* (sqlite:connect "db.sqlite3")) (format t "~A" (type-of (sqlite:execute-single *db* "select created_on from apps_app"))) => (SIMPLE-ARRAY CHARACTER (26))
It returns a string instead of a temporal type!
Any idea why this library doesn't return the correct type for the column?
Hello, I've got a table with a
"created_on" datetime NOT NULL
column. When I read it I get:It returns a string instead of a temporal type!
Any idea why this library doesn't return the correct type for the column?