Skip to content

Commit

Permalink
Merge pull request #3697 from nadment/3693
Browse files Browse the repository at this point in the history
Fix Action Bulk load into MSSQL to support native connection #3693
  • Loading branch information
hansva authored Mar 13, 2024
2 parents 540904b + 8c758f5 commit 30dc12d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,8 @@ public Result execute(Result previousResult, int nr) {
if (connection != null) {

// User has specified a connection, We can continue ...
if (!"MSSQL".equals(connection.getPluginId())) {
String pluginId = connection.getPluginId();
if (!("MSSQL".equals(pluginId) || "MSSQLNATIVE".equals(pluginId))) {

logError(
BaseMessages.getString(
Expand Down

0 comments on commit 30dc12d

Please sign in to comment.