interface MicrosoftSqlNodeParameters {
columns?: string;
deleteKey?: string;
operation?:
| "update"
| "delete"
| "executeQuery"
| "insert";
query?: string;
table?: string;
updateKey?: string;
}Properties§
§§§§§
readonly columns?: string§
readonly delete Key?: stringName of the property which decides which rows in the database should be deleted. Normally that would be "id". Default: "id"
readonly operation?: "update" | "delete" | "executeQuery" | "insert"Default: "insert"
readonly query?: stringThe SQL query to execute Type options: {"editor":"sqlEditor","sqlDialect":"MSSQL"}
readonly table?: stringName of the table in which to insert data to
readonly update Key?: stringName of the property which decides which rows in the database should be updated. Normally that would be "id". Default: "id"
Comma-separated list of the properties which should used as columns for the new rows