-
Notifications
You must be signed in to change notification settings - Fork 426
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
Calling stored procedure directly #547
Conversation
…nd inserts data multiple times
…ad to see if it contains return value
src/main/java/com/microsoft/sqlserver/jdbc/SQLServerCallableStatement.java
Outdated
Show resolved
Hide resolved
src/main/java/com/microsoft/sqlserver/jdbc/SQLServerCallableStatement.java
Outdated
Show resolved
Hide resolved
# Conflicts: # src/main/java/com/microsoft/sqlserver/jdbc/Parameter.java # src/main/java/com/microsoft/sqlserver/jdbc/SQLServerCallableStatement.java # src/main/java/com/microsoft/sqlserver/jdbc/SQLServerConnection.java # src/main/java/com/microsoft/sqlserver/jdbc/SQLServerPreparedStatement.java # src/main/java/com/microsoft/sqlserver/jdbc/SQLServerResource.java # src/main/java/com/microsoft/sqlserver/jdbc/SQLServerStatement.java # src/main/java/com/microsoft/sqlserver/jdbc/dtv.java # src/test/java/com/microsoft/sqlserver/jdbc/AlwaysEncrypted/CallableStatementTest.java
Hello mssql-jdbc team, can you please let me know when this will be merged and released? |
Hi @praskutti , |
Thanks @ulvii . I coded a usable workaround for our requirement (to create a generic method for SQL Server proc calls that would avoid extra metadata lookups). I thought this PR would solve it, but because it will take time to release, we will roll with our method. I will post the code-sample soon. |
This is still being worked on #2154. |
calling stored procedure directly instead of wrapping it around
exec sp_executesql
.Not to be merged yet. Opening this pull request for discussion and improvement.
Notice that this still does not have the push for avoiding the metadata lookup with named params. Will be adding that soon to the same pr in another commit.