-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
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
SQLServer warning about FLOAT type not provided #304
Comments
I also tested with the latest 6.4 and 7.0 JDBC drivers with the same results. mssql-jdbc-6.4.0.jre8.jar |
Your JDBC driver is limited in capabilities. As simple as that. You could provide a PR with SchemaTool "dbinfo" output for https://github.com/datanucleus/datanucleus-rdbms/tree/master/docs which documents what those drivers handle. You could also update the SQLServerAdapter to update what handling your database requires (either add a dummy FLOAT handler to the code like is done for other DatabaseAdapters, or change the default for your versions of drivers to not reference FLOAT) ... https://github.com/datanucleus/datanucleus-rdbms/blob/master/src/main/java/org/datanucleus/store/rdbms/adapter/SQLServerAdapter.java |
No apparent willingness to do any of the suggestions, so closing. This software is dependent on contributions, particularly when the only people who can be bothered to do anything don't have that database |
Datanucleus: 5.1.9
Microsoft JDBC Driver: sqljdbc4.jar
Likely related to #29
Datanucleus is configured to create the schema on startup. Schema is created successfully and without the above warning. On every subsequent restart however, the warnings show up.
I'm not sure if there's a workaround or even if this is something to be concerned about. Looking for guidance.
The text was updated successfully, but these errors were encountered: