()
| 187 | } |
| 188 | |
| 189 | async function getMultipleStatementsConnection() { |
| 190 | const dbConfig = await getDBConfig(); |
| 191 | const options: ConnectionOptions = { |
| 192 | ...dbConfig, |
| 193 | multipleStatements: true, |
| 194 | }; |
| 195 | return await mysqlPromise.createConnection(options); |
| 196 | } |
| 197 | |
| 198 | export { |
| 199 | endPool, |
no test coverage detected