Subject | Re: [IB-Conversions] Selecting from a stored proc that has no outputs |
---|---|
Author | Craig Arenson |
Post date | 2010-04-29T06:48:39Z |
Works like a bomb.
thank you!
At 05:40 PM 28/04/2010, you wrote:
thank you!
At 05:40 PM 28/04/2010, you wrote:
>[Non-text portions of this message have been removed]
>
>CREATE PROCEDURE GET_PRODUCTIVITY (
>tiepe char(1) character set none)
>returns (
>name varchar(30) character set none,
>short_name varchar(2) character set none,
>prod_count integer)
>as
>BEGIN
>exit;
>suspend;
>END
>
>