dynamically called a stored procedure from proC?
From: Jack Tolson <tci_at_netcom.com>
Date: 1998/03/12
Message-ID: <35084767.B6CC0B13_at_netcom.com>#1/1
Date: 1998/03/12
Message-ID: <35084767.B6CC0B13_at_netcom.com>#1/1
Is there a way to dynamically called a stored procedure from proC? I know that you can call a dynamic sql statement. You can get a desciptor and build the statement. However, it seems that you have to create a sql block. Meaning that you have to define a block, something like this example:
exec sql;
begin
stored procedure;
end;
I also tried:
exe = "execute stored proc";
EXEC SQL :exe;
The precompiler did not like this statement;
P.S. Also, can I call a function that returns a value. Received on Thu Mar 12 1998 - 00:00:00 CET