feat(MySql.credentials): add multipleStatements

This commit is contained in:
Andy Chuang 2022-08-04 12:30:21 +08:00
parent 43a91b8bd3
commit 0f2dc11aae

View file

@ -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',