We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(Continuation of #339. Also prompted by this Stack Overflow question.)
As of mssql-jdbc-6.5.4.jre8-preview.jar the driver still does not support the following statement when retrieving a value from a datetime2 column
mssql-jdbc-6.5.4.jre8-preview.jar
datetime2
java.time.LocalDateTime x = rs.getObject(1, java.time.LocalDateTime.class);
failing with
com.microsoft.sqlserver.jdbc.SQLServerException: The conversion to class java.time.LocalDateTime is unsupported.
If the objective is to support Java 8 then the driver really should be able to handle this.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
(Continuation of #339. Also prompted by this Stack Overflow question.)
As of
mssql-jdbc-6.5.4.jre8-preview.jar
the driver still does not support the following statement when retrieving a value from adatetime2
columnfailing with
If the objective is to support Java 8 then the driver really should be able to handle this.
The text was updated successfully, but these errors were encountered: