How can we define output parameter size in stored procedure?

后端 未结 3 1735
无人共我
无人共我 2020-12-17 18:48

How can we define output parameter size in stored procedure?

3条回答
  •  天命终不由人
    2020-12-17 19:35

    You can't. Of course, you are in control of how much data you put into the OUT parameter in the stored procedure. If you want you can create a sized local variable to hold the data and then assign the value of that variable to the OUT parameter.

    The calling program determines the size of the variable that receives the OUT parameter.

提交回复
热议问题