Skip to content

Commit

Permalink
Added missing property value for disableStatmentPooling (#2120)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkyc authored May 4, 2023
1 parent e373323 commit c84b870
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ public final class SQLServerDriver implements java.sql.Driver {
SQLServerDriverStringProperty.DATABASE_NAME.getDefaultValue(), false, null),
new SQLServerDriverPropertyInfo(SQLServerDriverBooleanProperty.DISABLE_STATEMENT_POOLING.toString(),
Boolean.toString(SQLServerDriverBooleanProperty.DISABLE_STATEMENT_POOLING.getDefaultValue()), false,
new String[] {"true"}),
new String[] {"true", "false"}),
new SQLServerDriverPropertyInfo(SQLServerDriverStringProperty.ENCRYPT.toString(),
SQLServerDriverStringProperty.ENCRYPT.getDefaultValue(), false,
new String[] {EncryptOption.FALSE.toString(), EncryptOption.NO.toString(),
Expand Down

0 comments on commit c84b870

Please sign in to comment.