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
If columnEncryptionSetting is enabled, mssql-jdbc driver calls sp_describe_parameter_encryption each time PreparedStatement is executed.
columnEncryptionSetting
Below SQL profiler trace was generated when creating PreparedStatement and using it twice to execute.
Trace for mssql-jdbc:
Trace for SqlClient:
Calling the stored procedure just once and reusing the metadata will improve the drivers performance with Always Encrypted significantly.
The text was updated successfully, but these errors were encountered:
@v-xiangs Thanks for the fix!
Sorry, something went wrong.
xiangyushawn
No branches or pull requests
If
columnEncryptionSetting
is enabled, mssql-jdbc driver calls sp_describe_parameter_encryption each time PreparedStatement is executed.Below SQL profiler trace was generated when creating PreparedStatement and using it twice to execute.
Trace for mssql-jdbc:
Trace for SqlClient:
Calling the stored procedure just once and reusing the metadata will improve the drivers performance with Always Encrypted significantly.
The text was updated successfully, but these errors were encountered: