mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
feat(MySql.credentials): add multipleStatements
This commit is contained in:
parent
43a91b8bd3
commit
0f2dc11aae
|
@ -46,6 +46,14 @@ export class MySql implements ICredentialType {
|
|||
description:
|
||||
'The milliseconds before a timeout occurs during the initial connection to the MySQL server',
|
||||
},
|
||||
{
|
||||
displayName: 'Multiple Statements',
|
||||
name: 'multipleStatements',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description:
|
||||
'Allow multiple mysql statements per query. Be careful with this, it could increase the scope of SQL injection attacks.',
|
||||
},
|
||||
{
|
||||
displayName: 'SSL',
|
||||
name: 'ssl',
|
||||
|
|
Loading…
Reference in a new issue