Skip to content
Prev Previous commit
Next Next commit
Updated test testAddbatch2AEOnConnection
  • Loading branch information
tkyc committed Jan 8, 2024
commit 4b0f8540138de2a3696bfbfd2743d07411bbcbef
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ public void testAddBatch2(Connection conn) throws SQLException {
@Tag(Constants.xSQLv11)
@Tag(Constants.xSQLv12)
public void testAddbatch2AEOnConnection() throws SQLException {
try (Connection connection = PrepUtil.getConnection(connectionString + ";columnEncryptionSetting=Enabled;")) {
String cs = TestUtils.addOrOverrideProperty(connectionString, "columnEncryptionSetting", "Enabled");
cs = TestUtils.addOrOverrideProperty(cs, "sendStringParametersAsUnicode", "false");
try (Connection connection = PrepUtil.getConnection(cs)) {
testAddBatch2(connection);
}
}
Expand Down