1
0
Fork 0
mirror of synced 2024-06-14 00:14:39 +12:00

Support multiple statements

This commit is contained in:
Mel O'Hagan 2022-09-22 16:36:19 +01:00
parent aebcea3bea
commit 76f6f9e9b9

View file

@ -30,6 +30,7 @@ interface MySQLConfig {
ssl?: { [key: string]: any }
rejectUnauthorized: boolean
typeCast: Function
multipleStatements: boolean
}
const SCHEMA: Integration = {
@ -136,6 +137,7 @@ class MySQLIntegration extends Sql implements DatasourcePlus {
delete config.rejectUnauthorized
this.config = {
...config,
multipleStatements: true,
typeCast: function (field: any, next: any) {
if (
field.type == "DATETIME" ||