Board index » delphi » Oracle - Stored Procedure - Output Params - Delphi

Oracle - Stored Procedure - Output Params - Delphi

Hi,
I want to return a output parameter of oracle stored procedure to delphi
front end.  The output parameter will have more than 1000 character..  So I
have declared as 'Long' the output parameter..  While accessing the output
parameter from delphi, raises error like 'Capability not supported' or
'Unknown Datatype'.  I have used param datatype in Delphi are 'ftMemo',
'ftWideString', 'ftString'...

Please anyone give solution for this... If you give, it is really helpful
for me..

Thanks
Vijay

 

Re:Oracle - Stored Procedure - Output Params - Delphi


AFAIK, char output parameters are limited to length 255. Use result set
instead.

--
Robert

Quote
Vijay wrote in message <3c234812_2@dnews>...
>Hi,
>I want to return a output parameter of oracle stored procedure to delphi
>front end.  The output parameter will have more than 1000 character..  So I
>have declared as 'Long' the output parameter..  While accessing the output
>parameter from delphi, raises error like 'Capability not supported' or
>'Unknown Datatype'.  I have used param datatype in Delphi are 'ftMemo',
>'ftWideString', 'ftString'...

>Please anyone give solution for this... If you give, it is really helpful
>for me..

>Thanks
>Vijay

Other Threads