MSSQL Node Integration (#729)

* basic setup mssql node

* executeQuery for MSSQL working

* work on insert MSSQL, incomplete

* 🚧 basic setup update functionality

* 🔨 refactor insert for handling >1000 values

*  complete MSSQL node

*  add delete action to node

* 🚧 handling multiple tables and column sets

* 🐛 enabling usage of expression for every field

* 🔨 remove lodash dependency

*  enable continue on fail option

* 🐎 minify icon

* 🔨 improve table creation, item copying, 🐛 correct output of node when active continue on fail

* 🐛 move mssql types to dev dependencies

* 🎨 remove auto formatting from redis

* 🎨 apply corrected syntax format

*  reset Redis node to master stage

* 🐛 fix building issue
This commit is contained in:
Ben Hesseldieck
2020-07-08 10:00:13 +02:00
committed by GitHub
parent 224842c790
commit b1035d539d
7 changed files with 670 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
import { IDataObject } from 'n8n-workflow';
export interface ITables {
[key: string]: {
[key: string]: Array<IDataObject>;
};
}