
|
If you were logged in you would be able to see more operations.
|
|
|
| Planning Status: |
Unspecified
|
|
Test case:
create procedure p1 returns (n1 integer, n2 integer)
as
begin
n1 = 111;
n2 = 222;
end!
execute block returns (n1 integer, n2 integer)
as
begin
execute statement
'execute procedure p1' into n1, n2;
suspend;
end!
N1 N2
============ ============
Statement failed, SQLCODE = -901
request synchronization error
|
|
Description
|
Test case:
create procedure p1 returns (n1 integer, n2 integer)
as
begin
n1 = 111;
n2 = 222;
end!
execute block returns (n1 integer, n2 integer)
as
begin
execute statement
'execute procedure p1' into n1, n2;
suspend;
end!
N1 N2
============ ============
Statement failed, SQLCODE = -901
request synchronization error
|
Show » |
|