Fixing a connection pool config to allow multiple statements per query

This commit is contained in:
Bradley Bickford 2023-12-30 18:37:28 -05:00
parent ed67193761
commit bdb9d4b807

View File

@ -10,7 +10,8 @@ async function buildPool() {
user: mysql_username,
password: mysql_password,
database: mysql_db_name,
connectionLimit: 10
connectionLimit: 10,
multipleStatements: true
}).promise()
}
}