1
0
Fork 0
mirror of synced 2024-06-30 12:00:31 +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 } ssl?: { [key: string]: any }
rejectUnauthorized: boolean rejectUnauthorized: boolean
typeCast: Function typeCast: Function
multipleStatements: boolean
} }
const SCHEMA: Integration = { const SCHEMA: Integration = {
@ -136,6 +137,7 @@ class MySQLIntegration extends Sql implements DatasourcePlus {
delete config.rejectUnauthorized delete config.rejectUnauthorized
this.config = { this.config = {
...config, ...config,
multipleStatements: true,
typeCast: function (field: any, next: any) { typeCast: function (field: any, next: any) {
if ( if (
field.type == "DATETIME" || field.type == "DATETIME" ||