From 96fa3acb2ffc41ddef996ed99feb5e54e6f2fe37 Mon Sep 17 00:00:00 2001 From: R4SAS Date: Fri, 28 Jun 2019 20:48:02 +0300 Subject: [PATCH] add multiple statements support in db connection --- config/config.json.example | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/config/config.json.example b/config/config.json.example index 8c7e5fa..a31514e 100644 --- a/config/config.json.example +++ b/config/config.json.example @@ -6,6 +6,9 @@ "database": "gedb", "host": "127.0.0.1", "dialect": "mysql", + "dialectOptions": { + "multipleStatements": true + }, "logging": false }, "test": { @@ -13,7 +16,10 @@ "password": null, "database": "database_test", "host": "127.0.0.1", - "dialect": "mysql" + "dialect": "mysql", + "dialectOptions": { + "multipleStatements": true + } }, "production": { "username": "geuser", @@ -21,6 +27,9 @@ "database": "gedb", "host": "127.0.0.1", "dialect": "mysql", + "dialectOptions": { + "multipleStatements": true + }, "logging": false } },