Я проложил маршрут с использованием NodeJS и Express и могу подключиться к базе данных и получить данные.
Как вставить весь ответ в 1 объект JSON (вместо печати в виде консоли):
app.get('/db', function(req, res){
connection.execute({
sqlText: sqlStatement,
complete: function(err, stmt, rows) {
if (err) {
console.error('Failed to execute statement due to the following error: ' + err.message);
} else {
console.log('Number of rows: ' + rows.length);
console.log('Rows:');
for (row in rows)
console.log(JSON.stringify(rows, null, 2));
}
},
});
res.send({ name: 'done' });
});