gpt4 book ai didi

mysql - 如何在 knex.js 中运行带有输出返回的 mysql 存储过程

转载 作者:行者123 更新时间:2023-11-29 05:51:21 30 4
gpt4 key购买 nike

我对 knex.js 有疑问

如何在knex.js中调用带输出的存储过程

sp 字符串:调用 sp_start(1, @outmsg);

我需要调用那个 SP 并选择返回的输出

我的代码:

    .get('/:headerId/recount', function(req, res, next) {

knex.raw(
'Call sp_start(?,?)',[req.params.headerId, @outmsg]
)
.then(function(result) {
return;
});
})

但是返回错误

最佳答案

根据 how to pass in and out parameters to a mysql stored procedure and return the stored procedure result in the nodejs code

knex.transaction(trx => {
return knex.raw(
'Call sp_start(?,@outmsg)',
[req.params.headerId]
)
.then(res => knex.select(knex.raw('@outmsg')));
})
.then(res => console.log("Got output:", res));

应该可以。

关于mysql - 如何在 knex.js 中运行带有输出返回的 mysql 存储过程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53867370/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com