i use code same doc
myDatabase.createStatement()
.then(statement => {
return statement.executeQuery('select * from FOO')
})
.then(resultSet => {
const arrayOfResults = resultSet.fetchAllResults()
arrayOfResults.forEach(result => {
console.log(result)
})
})
but when run nodemon executeQuery not close
thank you
i use code same doc
but when run nodemon executeQuery not close
thank you