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
In the deprecated client we are able to use CallableStatment, it seems that in the new client everything is delegated to PreparedStatment.
On the deprecated client CallableStatement and PreparedStament results are treated differently. When using the new client with stored procedures we get com.microsoft.sqlserver.jdbc.SQLServerException: The statement must be executed before any results can be obtained.
Which then requires us to set "autoGeneratedKeys": false this is not documented.
Either it needs to be documented. Or it should be considered to use CallableStatement for SPs and handle the result differently?
The text was updated successfully, but these errors were encountered:
Vertx 4.1.4 and Ms Sql 2016.
Based on convo here: https://groups.google.com/g/vertx/c/2iBAmU-xGNE
In the deprecated client we are able to use CallableStatment, it seems that in the new client everything is delegated to PreparedStatment.
On the deprecated client CallableStatement and PreparedStament results are treated differently. When using the new client with stored procedures we get
com.microsoft.sqlserver.jdbc.SQLServerException: The statement must be executed before any results can be obtained.
Which then requires us to set
"autoGeneratedKeys": false
this is not documented.Either it needs to be documented. Or it should be considered to use CallableStatement for SPs and handle the result differently?
The text was updated successfully, but these errors were encountered: