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
The type of the Java object will be the default Java object type corresponding to the column's SQL type, following the mapping for built-in types specified in the JDBC specification.
We currently return our default type, e.g. in case of DATE we return LocalDate, not java.sql.Date. We must return the correct type.
The text was updated successfully, but these errors were encountered:
According to
ResultSet.getObject()
javadoc:We currently return our default type, e.g. in case of DATE we return
LocalDate
, notjava.sql.Date
. We must return the correct type.The text was updated successfully, but these errors were encountered: