团队I尝试在回答bot microsoft框架
的过程中设置答案查询这就是我的所作所为:
request = new Request(
"Here the string that returns me a number for example 763",
function(err, rowCount, rows)
{
console.log(rowCount + ' row(s) returned');
process.exit();
}
);
request.on('row', function(columns) {
columns.forEach(function(column) {
**session.send(column.value);
next();**
});
});
connection.execSql(request);
咨询没问题,但我收到错误:
无法创建属性' type'数字
对我来说,Session.send是从bot framewok模拟器向用户发送消息的方法。
答案 0 :(得分:1)
错误 - 在Sql查询语法中使用erorr:
"SELECT Medicina.Nombre FROM Medicina where='Aspirina'"
在查询下面更改列名:
"SELECT Medicina.Nombre FROM Medicina where column_name='Aspirina'"