How do you get output parameters from a stored procedure in Python?

前端 未结 9 1802
既然无缘
既然无缘 2020-12-20 13:40

I\'ve googled around a bit, but maybe I didn\'t put the correct magik incantation into the search box.

Does anyone know how to get output parameters from a stored p

9条回答
  •  情歌与酒
    2020-12-20 14:21

    You might also look at using SELECT rather than EXECUTE. EXECUTE is (iirc) basically a SELECT that doesn't actually fetch anything (, just makes side-effects happen).

提交回复
热议问题