Hi:
I´m calling a store procedure inside another store procedure and I have two problems
create sp1(in variable int)
begin
call sp2(variable)
call sp3(variable)
call sp4(variable)
end
the first thing is :
If I call each sp alone it works fine but if I call the sp1 it does´t work and no error messages are reported.
The second thing is:
How can I write a log with the value of the variable received by each sp?
Kind regards
mega
I´m calling a store procedure inside another store procedure and I have two problems
create sp1(in variable int)
begin
call sp2(variable)
call sp3(variable)
call sp4(variable)
end
the first thing is :
If I call each sp alone it works fine but if I call the sp1 it does´t work and no error messages are reported.
The second thing is:
How can I write a log with the value of the variable received by each sp?
Kind regards
mega
Comment