interface MySqlV1NodeParameters {
columns?: string;
operation?: "update" | "executeQuery" | "insert";
options?: {
ignore?: boolean;
priority?: "LOW_PRIORITY" | "HIGH_PRIORITY";
};
query?: string;
table?: { mode: "list"
| "name"; value: string };
updateKey?: string;
}
Properties§
Source§readonly options?: {
ignore?: boolean;
priority?: "LOW_PRIORITY" | "HIGH_PRIORITY";
}
readonly options?: {
ignore?: boolean;
priority?: "LOW_PRIORITY" | "HIGH_PRIORITY";
}
Modifiers for INSERT statement Default: {}
Source§readonly query?: string
readonly query?: string
The SQL query to execute Type options: {"editor":"sqlEditor","sqlDialect":"MySQL"}
Comma-separated list of the properties which should used as columns for the new rows