fix(Microsoft SQL Node): Prevent SQL injection (#7467)

Github issue / Community forum post (link here to close automatically):

---------

Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
Michael Kret
2023-10-24 12:36:44 +03:00
committed by GitHub
parent 78243edd18
commit a739245332
4 changed files with 288 additions and 201 deletions

View File

@@ -0,0 +1,13 @@
import type { IDataObject } from 'n8n-workflow';
export interface ITables {
[key: string]: {
[key: string]: IDataObject[];
};
}
export type OperationInputData = {
table: string;
columnString: string;
items: IDataObject[];
};