Subject | Re: [IBO] TIB_DSQL and "Unsupported Column Type:0" |
---|---|
Author | Helen Borrie |
Post date | 2002-08-31T06:33:36Z |
At 06:08 PM 31-08-02 +1200, you wrote:
I just created it in a dialect 3 database using your exact code and it
compiles and works fine.
When I do
EXECUTE PROCEDURE HELLO('Basil') it returns 'Basil' in the Fields[] array.
Under what conditions do you get the error message?
Helen
>Hello IBO supportIt's off-topic for IBO, but...
>
>Using D6 and IBO 4.2Hi.
>I am using a TIB_DSQL to execute small scripts.
>
>The following executes correctly:
>
>ALTER PROCEDURE HELLO (INTEXT VARCHAR(7))
>returns (OUT VARCHAR(7))
>AS
>begin
> out = 'hello';
> exit;
>end
>
>whereas the following produces the error message
>"Unsupported Column type :0"
>
>ALTER PROCEDURE HELLO (INTEXT VARCHAR(7))
>returns (OUT VARCHAR(7))
>AS
>begin
> out = :intext;
> exit;
>end
>
>Any suggestions?
I just created it in a dialect 3 database using your exact code and it
compiles and works fine.
When I do
EXECUTE PROCEDURE HELLO('Basil') it returns 'Basil' in the Fields[] array.
Under what conditions do you get the error message?
Helen