要动态检索数据时如何从数据库检索数据

时间:2019-01-16 05:46:05

标签: mysql node.js

当数据库表中有多个事件时,如何在NodeJS中动态地从数据库(MySQL)检索数据。在下面的代码中,我正在文本变量中获取数据...已经通过控制台检查了它,但希望从SQL查询中检索它....那么通过查询动态获取数据的正确方法是什么

console.log("enter to db-----------------",text)
connection.query("SELECT Description FROM tegbot_v4_xlsx WHERE Name=text",  async function (error, rows, fields) 
{                              
    if (!!error) 
    {
        console.log(`Error in the query`)
    }
    else 
    {
        console.log(`Successful query\n`);
        console.log('hello---------', rows[0].Description)
        await dc.context.sendActivity(rows.Description)
    }
})

0 个答案:

没有答案