Skip to content
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

Added SQL_SERVER_SNAPSHOT value to TransactionIsolationLevel enum #1973

Merged
merged 3 commits into from Jul 9, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -25,7 +25,12 @@ public enum TransactionIsolationLevel {
READ_COMMITTED(Connection.TRANSACTION_READ_COMMITTED),
READ_UNCOMMITTED(Connection.TRANSACTION_READ_UNCOMMITTED),
REPEATABLE_READ(Connection.TRANSACTION_REPEATABLE_READ),
SERIALIZABLE(Connection.TRANSACTION_SERIALIZABLE);
SERIALIZABLE(Connection.TRANSACTION_SERIALIZABLE),
/**
* A non-standard isolation level for Microsoft SQL Server. Defined in
kazuki43zoo marked this conversation as resolved.
Show resolved Hide resolved
* the SQL Server JDBC driver {@link com.microsoft.sqlserver.jdbc.ISQLServerConnection}
*/
kazuki43zoo marked this conversation as resolved.
Show resolved Hide resolved
SQL_SERVER_SNAPSHOT(0x1000);

private final int level;

Expand Down