We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
I see no reason why there should not be a conversion between these two types.
The following code serve the purpose:
(defn from-sql-date [^java.sql.Date date] (.toLocalDate date)) (defn to-sql-date [^java.time.LocalDate date] (java.sql.Date/valueOf date))
What do you think?