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
Is your feature request related to a problem? Please describe.
The library allows one to add attribute converters as to map between two incompatible data types. Out of the box the library provides a few attribute converters such as the DateToLocalDateConverter which allows you to map a java.sql.Date to a java.time.LocalDate automatically. However not all JDBC Data Types are covered.
Describe the solution you'd like
Implement new attribute converters that the JDBC ResultSet can produce. To see which ones are not covered yet see for example: https://www.tutorialspoint.com/jdbc/jdbc-data-types.htm. For example CLOB data type is not covered yet.
Describe alternatives you've considered
None.
Additional context
None.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
The library allows one to add attribute converters as to map between two incompatible data types. Out of the box the library provides a few attribute converters such as the
DateToLocalDateConverter
which allows you to map ajava.sql.Date
to ajava.time.LocalDate
automatically. However not all JDBC Data Types are covered.Describe the solution you'd like
Implement new attribute converters that the JDBC ResultSet can produce. To see which ones are not covered yet see for example: https://www.tutorialspoint.com/jdbc/jdbc-data-types.htm. For example
CLOB
data type is not covered yet.Describe alternatives you've considered
None.
Additional context
None.
The text was updated successfully, but these errors were encountered: