var client = new require("mysql-pool").MySQLPool({...});
client.query(
"SET @counter := 0, @type := 'asd'; select @counter, @type" ,
function (error, result, fields) {
if (error) {
throw error;
}else{
cb(result, fields);
}
});
(
查询在工作台或dbForge中工作得很好,mysql-pool也可以工作,但只有没有@variable_name
)